mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-02 03:39:43 -06:00
10 lines
293 B
CMake
10 lines
293 B
CMake
|
|
add_library(foo UNKNOWN IMPORTED)
|
|
add_library(bar 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 bar)
|