summaryrefslogtreecommitdiff
path: root/Tests/CompileDefinitions/add_definitions_command_with_target_prop/CMakeLists.txt
blob: e415390c02cda3c63edee6f8e5299faa73a87784 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

project(add_definitions_command_with_target_prop)

add_definitions(-DCMAKE_IS_FUN -DCMAKE_IS=Fun)

add_executable(add_definitions_command_with_target_prop_executable ../compiletest.cpp)

set_target_properties(add_definitions_command_with_target_prop_executable PROPERTIES COMPILE_DEFINITIONS CMAKE_IS_="Fun")

set_property(TARGET add_definitions_command_with_target_prop_executable APPEND PROPERTY COMPILE_DEFINITIONS CMAKE_IS_REALLY="Very Fun")

add_definitions(-DCMAKE_IS_FUN)

set_property(TARGET add_definitions_command_with_target_prop_executable APPEND PROPERTY COMPILE_DEFINITIONS CMAKE_IS=Fun CMAKE_IS_="Fun")