summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/ObjectLibrary/LinkObjRHSObject.cmake
blob: db571a3ca045a0c6d0a0f68b0f6c8638e54e3bb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
cmake_policy(SET CMP0022 NEW)

enable_language(C)

add_library(AnObjLib OBJECT a.c)
target_compile_definitions(AnObjLib INTERFACE REQUIRED)

add_library(AnotherObjLib OBJECT b.c)
target_link_libraries(AnotherObjLib PRIVATE AnObjLib)

add_executable(exe exe.c)
target_link_libraries(exe AnotherObjLib)