summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeOnly/TargetScope/Sub
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2012-01-25 19:04:26 (GMT)
committerBrad King <brad.king@kitware.com>2012-01-25 19:43:07 (GMT)
commitf9c1c6225c4366918465b86e4c6976ecc266245f (patch)
tree820b625dc0f55181f8deef886ca7fc7686074ab3 /Tests/CMakeOnly/TargetScope/Sub
parentca39c5cdd1ca28516791e00f213d6dee2179c6df (diff)
downloadCMake-f9c1c6225c4366918465b86e4c6976ecc266245f.zip
CMake-f9c1c6225c4366918465b86e4c6976ecc266245f.tar.gz
CMake-f9c1c6225c4366918465b86e4c6976ecc266245f.tar.bz2
Add test covering imported target scope rules
Diffstat (limited to 'Tests/CMakeOnly/TargetScope/Sub')
-rw-r--r--Tests/CMakeOnly/TargetScope/Sub/CMakeLists.txt9
-rw-r--r--Tests/CMakeOnly/TargetScope/Sub/Sub/CMakeLists.txt6
2 files changed, 15 insertions, 0 deletions
diff --git a/Tests/CMakeOnly/TargetScope/Sub/CMakeLists.txt b/Tests/CMakeOnly/TargetScope/Sub/CMakeLists.txt
new file mode 100644
index 0000000..27318f5
--- /dev/null
+++ b/Tests/CMakeOnly/TargetScope/Sub/CMakeLists.txt
@@ -0,0 +1,9 @@
+add_library(SubLibLocal UNKNOWN IMPORTED)
+add_library(SubLibGlobal UNKNOWN IMPORTED GLOBAL)
+add_subdirectory(Sub)
+if(NOT TARGET SubLibLocal)
+ message(FATAL_ERROR "SubLibLocal not visible in own directory")
+endif()
+if(NOT TARGET SubLibGlobal)
+ message(FATAL_ERROR "SubLibGlobal not visible in own directory")
+endif()
diff --git a/Tests/CMakeOnly/TargetScope/Sub/Sub/CMakeLists.txt b/Tests/CMakeOnly/TargetScope/Sub/Sub/CMakeLists.txt
new file mode 100644
index 0000000..a351daa
--- /dev/null
+++ b/Tests/CMakeOnly/TargetScope/Sub/Sub/CMakeLists.txt
@@ -0,0 +1,6 @@
+if(NOT TARGET SubLibLocal)
+ message(FATAL_ERROR "SubLibLocal not visible in subdirectory")
+endif()
+if(NOT TARGET SubLibGlobal)
+ message(FATAL_ERROR "SubLibGlobal not visible in subdirectory")
+endif()