Files
CMake/Tests/RunCMake/GenEx-LINK_GROUP/multiple-definitions.cmake
T
Marc Chevrier 1777883f8b genex-LINK_(LIBRARY|GROUP) features: update variables behavior
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.
2022-03-25 12:29:28 +01:00

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>")