diff options
author | Brad King <brad.king@kitware.com> | 2012-03-12 18:51:30 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-03-16 14:12:30 (GMT) |
commit | 5683101669e677b5b8d7b50d817da54156afd626 (patch) | |
tree | 02dfede4765af90cfa0dd3f464ca9a632c63fe96 /Tests/RunCMake/ObjectLibrary/PreLink.cmake | |
parent | 69d3d1835c5f4bdf9fbe5e920517a74d82482455 (diff) | |
download | CMake-5683101669e677b5b8d7b50d817da54156afd626.zip CMake-5683101669e677b5b8d7b50d817da54156afd626.tar.gz CMake-5683101669e677b5b8d7b50d817da54156afd626.tar.bz2 |
Test OBJECT library failure cases
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.
Diffstat (limited to 'Tests/RunCMake/ObjectLibrary/PreLink.cmake')
-rw-r--r-- | Tests/RunCMake/ObjectLibrary/PreLink.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/RunCMake/ObjectLibrary/PreLink.cmake b/Tests/RunCMake/ObjectLibrary/PreLink.cmake new file mode 100644 index 0000000..b889055 --- /dev/null +++ b/Tests/RunCMake/ObjectLibrary/PreLink.cmake @@ -0,0 +1,4 @@ +add_library(A OBJECT a.c) +add_custom_command(TARGET A PRE_LINK + COMMAND ${CMAKE_COMMAND} -E echo "A pre-link" + ) |