• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1if (NOT BINARY)
2  message (FATAL_ERROR "BINARY file to check not specified!")
3endif ()
4file (STRINGS "${BINARY}" strings REGEX "This text should be stripped out")
5if (strings)
6  message (FATAL_ERROR "Text not stripped from binary like it should be: ${BINARY}")
7endif ()
8