Files
CMake/Tests/RunCMake/add_library/STATICwithOnlyObjectSources.cmake

6 lines
208 B
CMake

enable_language(CXX)
add_library(ObjectLibDependency OBJECT test.cpp)
add_library(TestStaticLibWithoutSources STATIC)
target_sources(TestStaticLibWithoutSources PUBLIC $<TARGET_OBJECTS:ObjectLibDependency>)