cmake/Tests/RunCMake/ObjectLibrary/LinkObjLHSStatic.cmake

8 lines
200 B
CMake
Raw Normal View History

2018-08-09 18:06:22 +02:00
project(LinkObjLHSStatic C)
add_library(OtherLib STATIC a.c)
target_compile_definitions(OtherLib INTERFACE REQUIRED)
add_library(AnObjLib OBJECT requires.c)
target_link_libraries(AnObjLib OtherLib)