summaryrefslogtreecommitdiff
path: root/Modules/Dart.cmake
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-03-03 09:32:45 -0500
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-03-03 09:32:45 -0500
commitac4361b8d9d1425591df10fc09563252b8c6dcf8 (patch)
tree93fcc3bf32cc136d355a6c33c569b89a99b3698f /Modules/Dart.cmake
parent7287c25b1b740bc417fb25226206c94a41b207c9 (diff)
downloadcmake-ac4361b8d9d1425591df10fc09563252b8c6dcf8.tar.gz
Start cleaning global namespace
Diffstat (limited to 'Modules/Dart.cmake')
-rw-r--r--Modules/Dart.cmake16
1 files changed, 10 insertions, 6 deletions
diff --git a/Modules/Dart.cmake b/Modules/Dart.cmake
index 8a7a90c5e7..7e3581215f 100644
--- a/Modules/Dart.cmake
+++ b/Modules/Dart.cmake
@@ -52,9 +52,13 @@ IF(BUILD_TESTING)
# make program just needs to use CMAKE_MAKE_PROGRAM which is required
# to be defined by cmake
SET(MAKEPROGRAM ${CMAKE_MAKE_PROGRAM})
- OPTION(VERBOSE_BUILD "Show the actual output of the build, or if off show a . for each 1024 bytes." "OFF")
- OPTION(BUILD_ERROR_REPORT_LIMIT "Limit of reported errors, -1 reports all." -1 )
- OPTION(BUILD_WARNING_REPORT_LIMIT "Limit of reported warnings, -1 reports all." -1 )
+ OPTION(DART_VERBOSE_BUILD "Show the actual output of the build, or if off show a . for each 1024 bytes." "OFF")
+ OPTION(DART_BUILD_ERROR_REPORT_LIMIT "Limit of reported errors, -1 reports all." -1 )
+ OPTION(DART_BUILD_WARNING_REPORT_LIMIT "Limit of reported warnings, -1 reports all." -1 )
+
+ SET(VERBOSE_BUILD ${DART_VERBOSE_BUILD})
+ SET(BUILD_ERROR_REPORT_LIMIT ${DART_BUILD_ERROR_REPORT_LIMIT})
+ SET(BUILD_WARNING_REPORT_LIMIT ${DART_BUILD_WARNING_REPORT_LIMIT})
FIND_PROGRAM(CVSCOMMAND cvs )
SET(CVS_UPDATE_OPTIONS "-d -A -P" CACHE STRING "Options passed to the cvs update command.")
@@ -99,9 +103,9 @@ IF(BUILD_TESTING)
SET (DELIVER_CONTINUOUS_EMAIL "Off" CACHE BOOL "Should Dart server send email when build errors are found in Continuous builds?")
MARK_AS_ADVANCED(
- VERBOSE_BUILD
- BUILD_WARNING_REPORT_LIMIT
- BUILD_ERROR_REPORT_LIMIT
+ DART_VERBOSE_BUILD
+ DART_BUILD_WARNING_REPORT_LIMIT
+ DART_BUILD_ERROR_REPORT_LIMIT
SITE
MAKECOMMAND
JAVACOMMAND