mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-08 16:19:36 -06:00
To be more consistent between genex and variables as well as the forecomming LINK_GROUP genex, rename variable *_LINK_USING_<FEATURE>* in *_LINK_LIBRARY_USING_<FEATURE>*
10 lines
240 B
CMake
10 lines
240 B
CMake
enable_language(C)
|
|
|
|
set(CMAKE_C_LINK_LIBRARY_USING_feat_SUPPORTED TRUE)
|
|
set(CMAKE_C_LINK_LIBRARY_USING_feat "")
|
|
|
|
add_library(dep SHARED empty.c)
|
|
|
|
add_library(lib SHARED empty.c)
|
|
target_link_libraries(lib PRIVATE "$<LINK_LIBRARY:feat,dep>")
|