diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-06-27 13:16:16 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-06-27 13:16:16 (GMT) |
commit | 00f2337e44410baf22f22862474832ee061b7ba9 (patch) | |
tree | dc4468303be86f5c3ad2bb3cb5e0598de4a3b8ce /CMakeLists.txt | |
parent | 29450e7f48900cacc2bdfe685f4d1c405768291f (diff) | |
download | CMake-00f2337e44410baf22f22862474832ee061b7ba9.zip CMake-00f2337e44410baf22f22862474832ee061b7ba9.tar.gz CMake-00f2337e44410baf22f22862474832ee061b7ba9.tar.bz2 |
added dependencies for testing
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ec5a23a..6df13eb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,6 +5,16 @@ SUBDIRS(Source Modules Templates) # Include the standard Dart testing module INCLUDE (${CMAKE_ROOT}/Modules/Dart.cmake) +# add some testing dependencies +IF(BUILD_TESTING) + IF (DART_ROOT) + ADD_DEPENDENCIES(Nightly cmaketest cmake) + ADD_DEPENDENCIES(Experimental cmaketest cmake) + ADD_DEPENDENCIES(NightlyTest cmaketest cmake) + ADD_DEPENDENCIES(ExperimentalTest cmaketest cmake) + ENDIF (DART_ROOT) +ENDIF(BUILD_TESTING) + SET(EXECUTABLE_OUTPUT_PATH ${CMake_BINARY_DIR}/Source CACHE PATH "Where to put the executables for CMake" ) |