diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-05-02 17:57:25 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-05-02 17:57:25 (GMT) |
commit | bec9b174f5f4460c08e6899f62ef6406de7a3a30 (patch) | |
tree | 18b893965d4cadc25417cc285997670f56a36725 /Modules/DartConfiguration.tcl.in | |
parent | d6b9c96739b38be482105695af6bfc3f50782792 (diff) | |
download | CMake-bec9b174f5f4460c08e6899f62ef6406de7a3a30.zip CMake-bec9b174f5f4460c08e6899f62ef6406de7a3a30.tar.gz CMake-bec9b174f5f4460c08e6899f62ef6406de7a3a30.tar.bz2 |
ENH: Fix some dart issues. Now it works fine without dart.
Diffstat (limited to 'Modules/DartConfiguration.tcl.in')
-rw-r--r-- | Modules/DartConfiguration.tcl.in | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/Modules/DartConfiguration.tcl.in b/Modules/DartConfiguration.tcl.in new file mode 100644 index 0000000..bed63d1 --- /dev/null +++ b/Modules/DartConfiguration.tcl.in @@ -0,0 +1,53 @@ +# This file is configured by CMake automatically as DartConfiguration.tcl +# If you choose not to use CMake, this file may be hand configured, by +# filling in the required variables. + + +# Configuration directories and files +SourceDirectory: @PROJECT_SOURCE_DIR@ +BuildDirectory: @PROJECT_BINARY_DIR@ + +# Dart options + +# CVS options +# Default is "-d -P -A" +CVSUpdateOptions: @CVS_UPDATE_OPTIONS@ + +# Site is something like machine.domain, i.e. pragmatic.crd +Site: @SITE@ + +# Build name is osname-revision-compiler, i.e. Linux-2.4.2-2smp-c++ +BuildName: @BUILDNAME@ + +# Submission information +DropSite: @DROP_SITE@ +DropLocation: @DROP_LOCATION@ +DropSiteUser: @DROP_SITE_USER@ +DropSitePassword: @DROP_SITE_PASSWORD@ +DropSiteMode: @DROP_SITE_MODE@ +DropMethod: @DROP_METHOD@ +TriggerSite: @TRIGGER_SITE@ + +# Dashboard start time +NightlyStartTime: @NIGHTLY_START_TIME@ + +# Commands for the build/test/submit cycle +ConfigureCommand: "@CMAKE_COMMAND@" "@PROJECT_SOURCE_DIR@" +CMakeCommand: @CMAKE_COMMAND@ +MakeCommand: @MAKECOMMAND@ +CVSCommand: @CVSCOMMAND@ +ScpCommand: @SCPCOMMAND@ +PurifyCommand: @PURIFYCOMMAND@ +ValgrindCommand: @VALGRIND_COMMAND@ +ValgrindCommandOptions: @VALGRIND_COMMAND_OPTIONS@ +# Compression commands +GunzipCommand: @GUNZIPCOMMAND@ +CompressionCommand: @COMPRESSIONCOMMAND@ +CompressionType: @COMPRESSIONCOMMAND@ + +# Testing options +# TimeOut is the amount of time in seconds to wait for processes +# to complete during testing. After TimeOut seconds, the +# process will be summaily terminated. +# Currently set to 25 minutes +TimeOut: @DART_TESTING_TIMEOUT@ |