fix #59, can't EXCLUDE_FROM_ALL the test directory

This commit is contained in:
Benoit Jacob 2009-10-03 15:51:42 -04:00
parent 7d2ca0e05e
commit 3e4cb08054

View File

@ -124,7 +124,7 @@ add_subdirectory(doc EXCLUDE_FROM_ALL)
include(CTest) include(CTest)
enable_testing() # must be called from the root CMakeLists, see man page 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) add_subdirectory(unsupported)