https://github.com/Kitware/CMake
Raw File
Tip revision: 4a6fe0290880bd56dd5141f06c9fa2b9e310162e authored by Brad King on 13 August 2015, 13:17:06 UTC
CMake 3.3.1
Tip revision: 4a6fe02
checktestf2.cmake
file(READ testfhello.txt IN)
message("${IN}")
if(IN MATCHES Hello AND IN MATCHES World)
  message("Passed")
else()
  message(FATAL_ERROR "Hello world not found")
endif()
file(WRITE testfhello2.txt ${IN})
back to top