c9f9b3cd94
Test that it is an error to read a number-compatible property to determine the link implementation. An alternative would be to consider the value to be "0", however, that is too arbitrary given the use-cases of this feature. Values from this feature may be used in setting a define, where "0" may have special or invalid meaning and should be explicit.
10 lines
321 B
CMake
10 lines
321 B
CMake
|
|
add_library(foo UNKNOWN IMPORTED)
|
|
add_library(bar UNKNOWN IMPORTED)
|
|
|
|
set_property(TARGET foo APPEND PROPERTY COMPATIBLE_INTERFACE_NUMBER_MIN SOMEPROP)
|
|
set_property(TARGET foo PROPERTY INTERFACE_SOMEPROP 42)
|
|
|
|
add_executable(user main.cpp)
|
|
target_link_libraries(user foo $<$<STREQUAL:$<TARGET_PROPERTY:SOMEPROP>,42>:bar>)
|