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.
14 lines
409 B
14 lines
409 B
enable_language(C)
|
|
|
|
set(CMAKE_C_LINK_GROUP_USING_feat_SUPPORTED TRUE)
|
|
set(CMAKE_C_LINK_GROUP_USING_feat "--start" "--stop")
|
|
|
|
add_library(dep1 SHARED empty.c)
|
|
add_library(dep2 SHARED empty.c)
|
|
target_link_libraries(dep2 PUBLIC dep1)
|
|
add_library(dep3 SHARED empty.c)
|
|
target_link_libraries(dep3 PUBLIC dep1)
|
|
|
|
add_library(lib1 SHARED empty.c)
|
|
target_link_libraries(lib1 PUBLIC "$<LINK_GROUP:feat,dep1,dep2>" dep3)
|