summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/add_library/SHAREDwithOnlyObjectSources.cmake
blob: 09281b00db14f78626f0eb3834d0cbe524a05d64 (plain)
1
2
3
4
5
enable_language(CXX)
add_library(ObjectLibDependency OBJECT test.cpp)

add_library(TestSharedLibWithoutSources SHARED)
target_sources(TestSharedLibWithoutSources PUBLIC $<TARGET_OBJECTS:ObjectLibDependency>)