浏览代码

added dependencies for testing

Ken Martin 24 年之前
父节点
当前提交
00f2337e44
共有 1 个文件被更改,包括 10 次插入0 次删除
  1. 10 0
      CMakeLists.txt

+ 10 - 0
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"
 )