mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
Now, several `INTERFACE_*` properties can be set on `IMPORTED` targets, not only via `set_property` and `set_target_properties` but also via `target_compile_definitions`, `target_compile_features`, `target_compile_options`, `target_include_directories`, `target_sources` and `target_link_libraries`. Fixes: #15689 Issue: #17197
3 lines
116 B
CMake
3 lines
116 B
CMake
add_library(UnknownImportedGlobal UNKNOWN IMPORTED GLOBAL)
|
|
target_link_libraries(UnknownImportedGlobal INTERFACE z)
|