CMakeLists.txt 571 B

123456789101112131415
  1. project(target_prop)
  2. add_executable(target_prop_executable ../compiletest.cpp)
  3. set_target_properties(target_prop_executable PROPERTIES COMPILE_DEFINITIONS CMAKE_IS_FUN)
  4. set_property(TARGET target_prop_executable APPEND PROPERTY COMPILE_DEFINITIONS CMAKE_IS_REALLY="Very Fun" CMAKE_IS=Fun)
  5. set_property(TARGET target_prop_executable APPEND PROPERTY COMPILE_DEFINITIONS CMAKE_IS_FUN CMAKE_IS_="Fun")
  6. set_property(TARGET target_prop_executable APPEND PROPERTY COMPILE_DEFINITIONS
  7. TEST_GENERATOR_EXPRESSIONS
  8. "$<1:CMAKE_IS_DECLARATIVE>"
  9. "$<0:GE_NOT_DEFINED>"
  10. )