From 12d99416c194f3c8d1f2f321213506514d0616c8 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Tue, 3 Jun 2003 14:45:16 -0400 Subject: [PATCH] ENH: add all targets for dashboard build types --- Modules/Dart.cmake | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Modules/Dart.cmake b/Modules/Dart.cmake index b4547056f..d1ba97e3b 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)