mirror of
https://github.com/reactos/CMake.git
synced 2025-04-03 15:51:36 +00:00

Don't refer to 'both', but a 'mixture'. List all compatible interface property types possible. Add another test for a mixture of three compatibilities.
9 lines
255 B
CMake
9 lines
255 B
CMake
|
|
add_library(foo UNKNOWN IMPORTED)
|
|
|
|
set_property(TARGET foo APPEND PROPERTY COMPATIBLE_INTERFACE_BOOL SOMETHING)
|
|
set_property(TARGET foo APPEND PROPERTY COMPATIBLE_INTERFACE_STRING SOMETHING)
|
|
|
|
add_executable(user main.cpp)
|
|
target_link_libraries(user foo)
|