mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 03:11:08 -06:00
The geneator expression can now be used with static, shared, and module libraries and executables.
3 lines
87 B
CMake
3 lines
87 B
CMake
add_library(NotObjLib INTERFACE)
|
|
add_library(A STATIC a.c $<TARGET_OBJECTS:NotObjLib>)
|