mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-06 22:30:07 -05:00
1777883f8b
Variable CMAKE_LINK_(LIBRARY|GROUP)_USING_<FEATURE>_SUPPORTED is evaluated only if CMAKE_<LANG>_LINK_(LIBRARY|GROUP)_USING_<FEATURE>_SUPPORTED is not defined. This new behavior enable to activate a feature globally on a platform and to disable it for some compilers and languages.
13 lines
421 B
CMake
13 lines
421 B
CMake
enable_language(C)
|
|
|
|
# Language specific definition takes precedence over more generic one
|
|
set(CMAKE_C_LINK_GROUP_USING_feat "-BEFORE" "-AFTER")
|
|
set(CMAKE_C_LINK_GROUP_USING_feat_SUPPORTED FALSE)
|
|
set(CMAKE_LINK_GROUP_USING_feat "-BEFORE" "-AFTER")
|
|
set(CMAKE_LINK_GROUP_USING_feat_SUPPORTED TRUE)
|
|
|
|
add_library(dep SHARED empty.c)
|
|
|
|
add_library(lib SHARED empty.c)
|
|
target_link_libraries(lib PRIVATE "$<LINK_GROUP:feat,dep>")
|