diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-06-14 20:38:19 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-06-14 20:38:19 (GMT) |
commit | 12d0b7c93d54f51a9b47152dbd5ba9b5c182c966 (patch) | |
tree | b40b27c13594987647a1659376c8e37643879835 /Modules/Dart.cmake | |
parent | ca071373052bfdf29c914d834dbdbe9d2b8f8f3d (diff) | |
download | CMake-12d0b7c93d54f51a9b47152dbd5ba9b5c182c966.zip CMake-12d0b7c93d54f51a9b47152dbd5ba9b5c182c966.tar.gz CMake-12d0b7c93d54f51a9b47152dbd5ba9b5c182c966.tar.bz2 |
ENH: change so that on all make based systems all dart targets are added
Diffstat (limited to 'Modules/Dart.cmake')
-rw-r--r-- | Modules/Dart.cmake | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Modules/Dart.cmake b/Modules/Dart.cmake index 853d5d1..cf55813 100644 --- a/Modules/Dart.cmake +++ b/Modules/Dart.cmake @@ -101,7 +101,9 @@ IF(BUILD_TESTING) ADD_CUSTOM_TARGET(ExperimentalSubmit ${TCL_TCLSH} ${DART_ROOT}/Source/Client/DashboardManager.tcl ${PROJECT_BINARY_DIR}/DartConfiguration.tcl Experimental Submit) - IF (UNIX) +# for non IDE based builds nmake and make +# add all these extra targets + IF(${CMAKE_BUILD_TOOL} MATCH make) # Make targets for Experimental builds ADD_CUSTOM_TARGET(ExperimentalStart ${TCL_TCLSH} ${DART_ROOT}/Source/Client/DashboardManager.tcl ${PROJECT_BINARY_DIR}/DartConfiguration.tcl Experimental Start) |