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.
23 lines
517 B
23 lines
517 B
12 years ago
|
|
||
|
cmake_minimum_required(VERSION 2.8)
|
||
|
|
||
|
project(target_compile_definitions)
|
||
|
|
||
|
add_executable(target_compile_definitions
|
||
|
"${CMAKE_CURRENT_SOURCE_DIR}/main.cpp"
|
||
|
)
|
||
|
target_compile_definitions(target_compile_definitions
|
||
|
PRIVATE MY_PRIVATE_DEFINE
|
||
|
PUBLIC MY_PUBLIC_DEFINE
|
||
|
INTERFACE MY_INTERFACE_DEFINE
|
||
|
)
|
||
|
|
||
|
add_executable(consumer
|
||
|
"${CMAKE_CURRENT_SOURCE_DIR}/consumer.cpp"
|
||
|
)
|
||
|
|
||
|
target_compile_definitions(consumer
|
||
|
PRIVATE $<TARGET_PROPERTY:target_compile_definitions,INTERFACE_COMPILE_DEFINITIONS>
|
||
|
-DDASH_D_DEFINE
|
||
|
)
|