blob: 1c90e9adc8523c19b1479fa1e6c74ab3f50aeea6 (
plain)
1
2
3
4
5
|
enable_language(CXX)
add_library(ObjectLibDependency OBJECT test.cpp)
add_executable(TestExeWithoutSources)
target_sources(TestExeWithoutSources PUBLIC $<TARGET_OBJECTS:ObjectLibDependency>)
|