summaryrefslogtreecommitdiff
path: root/Tests/Jump
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-06-08 12:26:32 -0400
committerKen Martin <ken.martin@kitware.com>2005-06-08 12:26:32 -0400
commit2e4258efc16a805fb6cc1a42426046f0f015657b (patch)
tree7fab61cfbd2d1d3b09bd6b4cb1e5cc5c33ce9b62 /Tests/Jump
parent2f42e93427902a8afa28ee3fe796768242452fbc (diff)
downloadcmake-2e4258efc16a805fb6cc1a42426046f0f015657b.tar.gz
ENH: shift to using ADD_SUBDIRECTORY
Diffstat (limited to 'Tests/Jump')
-rw-r--r--Tests/Jump/CMakeLists.txt3
-rw-r--r--Tests/Jump/Library/CMakeLists.txt3
2 files changed, 4 insertions, 2 deletions
diff --git a/Tests/Jump/CMakeLists.txt b/Tests/Jump/CMakeLists.txt
index 3a506aa48e..18776a1eb5 100644
--- a/Tests/Jump/CMakeLists.txt
+++ b/Tests/Jump/CMakeLists.txt
@@ -1,4 +1,5 @@
PROJECT(Jump)
SET(CMAKE_IGNORE_DEPENDENCIES_ORDERING 1)
-SUBDIRS(Executable Library)
+ADD_SUBDIRECTORY(Executable)
+ADD_SUBDIRECTORY(Library)
diff --git a/Tests/Jump/Library/CMakeLists.txt b/Tests/Jump/Library/CMakeLists.txt
index 9d45ea44b8..2f78c501c6 100644
--- a/Tests/Jump/Library/CMakeLists.txt
+++ b/Tests/Jump/Library/CMakeLists.txt
@@ -1 +1,2 @@
-SUBDIRS(Static Shared)
+ADD_SUBDIRECTORY(Static)
+ADD_SUBDIRECTORY(Shared)