From 3e4cb080549c39d8af80ce4e9b086a93a55a8f6a Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Sat, 3 Oct 2009 15:51:42 -0400 Subject: [PATCH] fix #59, can't EXCLUDE_FROM_ALL the test directory --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)