summaryrefslogtreecommitdiffstats
path: root/Tests/PreOrder
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-06-08 16:26:32 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-06-08 16:26:32 (GMT)
commit2e4258efc16a805fb6cc1a42426046f0f015657b (patch)
tree7fab61cfbd2d1d3b09bd6b4cb1e5cc5c33ce9b62 /Tests/PreOrder
parent2f42e93427902a8afa28ee3fe796768242452fbc (diff)
downloadCMake-2e4258efc16a805fb6cc1a42426046f0f015657b.zip
CMake-2e4258efc16a805fb6cc1a42426046f0f015657b.tar.gz
CMake-2e4258efc16a805fb6cc1a42426046f0f015657b.tar.bz2
ENH: shift to using ADD_SUBDIRECTORY
Diffstat (limited to 'Tests/PreOrder')
-rw-r--r--Tests/PreOrder/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/PreOrder/CMakeLists.txt b/Tests/PreOrder/CMakeLists.txt
index a4a96fb..dce1d92 100644
--- a/Tests/PreOrder/CMakeLists.txt
+++ b/Tests/PreOrder/CMakeLists.txt
@@ -1,6 +1,6 @@
# a simple test case
PROJECT (PreOrder)
SET(CMAKE_IGNORE_DEPENDENCIES_ORDERING 1)
-SUBDIRS(PREORDER Library)
+ADD_SUBDIRECTORY(Library)
ADD_EXECUTABLE (simple simple.cxx)
TARGET_LINK_LIBRARIES(simple simpleLib)