Good.cmake 321 B

12345678
  1. message(STATUS "Testing the configure step at ${CMAKE_BINARY_DIR}")
  2. add_custom_target(echo_test ALL COMMAND ${CMAKE_COMMAND} -E echo "Testing the build step at ${CMAKE_BINARY_DIR}")
  3. enable_testing()
  4. add_test(NAME EchoTest COMMAND ${CMAKE_COMMAND} -E echo "Testing the test step at ${CMAKE_BINARY_DIR}")
  5. include(CPack)