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.
11 lines
414 B
11 lines
414 B
add_library(scopedA INTERFACE IMPORTED)
|
|
set_property(TARGET scopedA PROPERTY INTERFACE_COMPILE_DEFINITIONS "SCOPED_A_2")
|
|
|
|
add_library(scope2_iface INTERFACE)
|
|
set_property(TARGET scope2_iface PROPERTY INTERFACE_COMPILE_DEFINITIONS
|
|
"$<TARGET_PROPERTY:scopedA,INTERFACE_COMPILE_DEFINITIONS>"
|
|
)
|
|
set_property(TARGET scope2_iface PROPERTY CUSTOM_PROP
|
|
"$<TARGET_PROPERTY:scopedA,INTERFACE_COMPILE_DEFINITIONS>"
|
|
)
|