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.
16 lines
364 B
16 lines
364 B
2 years ago
|
enable_language(C)
|
||
|
|
||
|
set(CMAKE_C_LINK_LIBRARY_USING_feat_SUPPORTED TRUE)
|
||
|
set(CMAKE_C_LINK_LIBRARY_USING_feat "<LIBRARY>")
|
||
|
|
||
|
add_library(dep OBJECT empty.c)
|
||
|
|
||
|
add_library(lib SHARED empty.c)
|
||
|
|
||
|
add_library(front INTERFACE)
|
||
|
target_link_libraries(front INTERFACE lib)
|
||
|
|
||
|
|
||
|
add_library(lib2 SHARED empty.c)
|
||
|
target_link_libraries(lib2 PRIVATE "$<LINK_LIBRARY:feat,front,dep>")
|