Sign in
cmake
/
cmake
/
76f08a107b344daff524974868ab30353bd9b255
/
.
/
Tests
/
RunCMake
/
ObjectLibrary
/
TransitiveDependencies.cmake
blob: e41cf2ec99279c23ae6f78e49054ab85a2690090 [
file
] [
log
] [
blame
]
add_library
(
lib1 STATIC depends_obj0
.
c
)
add_library
(
lib2 OBJECT a
.
c
)
target_link_libraries
(
lib2 PRIVATE lib1
)
add_executable
(
test exe2
.
c
)
target_link_libraries
(
test PUBLIC lib2
)