mirror of
https://github.com/reactos/CMake.git
synced 2024-12-20 18:48:14 +00:00
5683101669
Add "RunCMake.ObjectLibrary" test to verify that unsupported use cases are rejected with errors: * An OBJECT library may not reference another object library * An OBJECT library may not be referenced in target_link_libraries * An OBJECT library may not contain non-compiling sources * An OBJECT library may not have pre/post build/link commands * An OBJECT library may not be installed, exported, or imported Also verify that invalid $<TARGET_OBJECTS:...> expressions are diagnosed.
4 lines
93 B
CMake
4 lines
93 B
CMake
add_library(A SHARED a.c)
|
|
target_link_libraries(A AnObjLib)
|
|
add_library(AnObjLib OBJECT a.c)
|