aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-10-03 15:51:42 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-10-03 15:51:42 -0400
commit3e4cb080549c39d8af80ce4e9b086a93a55a8f6a (patch)
treee0fb2c31d18ef387ea3b598d01a32b3a1d49b6fe
parent7d2ca0e05e4355540abd8c8621d3b11ceb502293 (diff)
fix #59, can't EXCLUDE_FROM_ALL the test directory
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c1c9ee546..3f69c36cf 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -124,7 +124,7 @@ add_subdirectory(doc EXCLUDE_FROM_ALL)
include(CTest)
enable_testing() # must be called from the root CMakeLists, see man page
-add_subdirectory(test EXCLUDE_FROM_ALL)
+add_subdirectory(test) # can't do EXCLUDE_FROM_ALL here, breaks CTest
add_subdirectory(unsupported)