You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
477 B
13 lines
477 B
add_definitions(-DCMAKE_IS_FUN -DCMAKE_IS=Fun -DCMAKE_IS_="Fun")
|
|
if (NOT NO_SPACES_IN_DEFINE_VALUES)
|
|
add_definitions(-DCMAKE_IS_REALLY="Very Fun")
|
|
endif()
|
|
add_definitions(-DCMAKE_IS_="Fun")
|
|
if (NOT NO_SPACES_IN_DEFINE_VALUES)
|
|
add_definitions(-DCMAKE_IS_REALLY="Very Fun")
|
|
endif()
|
|
add_definitions(-DCMAKE_IS_FUN -DCMAKE_IS=Fun)
|
|
add_definitions(-DBUILD_IS_DEBUG=$<CONFIG:Debug> -DBUILD_IS_NOT_DEBUG=$<NOT:$<CONFIG:Debug>>)
|
|
|
|
add_executable(add_def_cmd_exe ../compiletest.cpp)
|