mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-07 23:59:41 -06:00
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
417 B
CMake
13 lines
417 B
CMake
enable_language(C)
|
|
|
|
# Language specific definition takes precedence over more generic one
|
|
set(CMAKE_C_LINK_LIBRARY_USING_feat "<LIBRARY>")
|
|
set(CMAKE_C_LINK_LIBRARY_USING_feat_SUPPORTED FALSE)
|
|
set(CMAKE_LINK_LIBRARY_USING_feat "<LIBRARY>")
|
|
set(CMAKE_LINK_LIBRARY_USING_feat_SUPPORTED TRUE)
|
|
|
|
add_library(dep SHARED empty.c)
|
|
|
|
add_library(lib SHARED empty.c)
|
|
target_link_libraries(lib PRIVATE "$<LINK_LIBRARY:feat,dep>")
|