diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-06-03 18:45:16 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-06-03 18:45:16 (GMT) |
commit | 12d99416c194f3c8d1f2f321213506514d0616c8 (patch) | |
tree | 34fdd336e8293c3684eb480150bf47321e13d2b4 /Modules | |
parent | 3a4d2e248ec8a22b84cc7769787424253da27fbb (diff) | |
download | CMake-12d99416c194f3c8d1f2f321213506514d0616c8.zip CMake-12d99416c194f3c8d1f2f321213506514d0616c8.tar.gz CMake-12d99416c194f3c8d1f2f321213506514d0616c8.tar.bz2 |
ENH: add all targets for dashboard build types
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Dart.cmake | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Modules/Dart.cmake b/Modules/Dart.cmake index b454705..d1ba97e 100644 --- a/Modules/Dart.cmake +++ b/Modules/Dart.cmake @@ -244,8 +244,11 @@ IF(BUILD_TESTING) # # add testing targets - ADD_CUSTOM_TARGET(Experimental ${CMAKE_CTEST_COMMAND} -D Experimental) - + FOREACH(mode Experimental Nightly Continuous NightlyMemoryCheck) + ADD_CUSTOM_TARGET(${mode} ${CMAKE_CTEST_COMMAND} -D ${mode}) + ENDFOREACH(mode) + + # for non IDE based builds nmake and make # add all these extra targets IF(${CMAKE_MAKE_PROGRAM} MATCHES make) |