mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
0a81ea1f12
Fixes: #23121
19 lines
556 B
CMake
19 lines
556 B
CMake
enable_language(C)
|
|
|
|
set(CMAKE_C_LINK_GROUP_USING_feat_SUPPORTED TRUE)
|
|
set(CMAKE_C_LINK_GROUP_USING_feat "--start" "--stop")
|
|
|
|
add_library(base1 SHARED empty.c)
|
|
add_library(base2 SHARED empty.c)
|
|
add_library(base3 SHARED empty.c)
|
|
add_library(base4 SHARED empty.c)
|
|
|
|
target_link_libraries(base1 PUBLIC base3)
|
|
target_link_libraries(base4 PUBLIC base2)
|
|
|
|
add_library(lib1 SHARED empty.c)
|
|
target_link_libraries(lib1 PUBLIC "$<LINK_GROUP:feat,base1,base2>")
|
|
|
|
add_library(lib2 SHARED empty.c)
|
|
target_link_libraries(lib2 PRIVATE "$<LINK_GROUP:feat,base3,base4>" lib1)
|