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/Export.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/Export.cmake')
-rw-r--r-- | Tests/RunCMake/ObjectLibrary/Export.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tests/RunCMake/ObjectLibrary/Export.cmake b/Tests/RunCMake/ObjectLibrary/Export.cmake new file mode 100644 index 0000000..a3f104e --- /dev/null +++ b/Tests/RunCMake/ObjectLibrary/Export.cmake @@ -0,0 +1,2 @@ +add_library(A OBJECT a.c) +export(TARGETS A FILE AExport.cmake) |