cmake/Modules/DartConfiguration.tcl.in

108 lines
3.2 KiB
Tcl
Raw Normal View History

# 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@
2010-06-23 01:18:35 +03:00
# Where to place the cost data store
CostDataFile: @CTEST_COST_DATA_FILE@
# 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@
2018-01-26 17:06:56 +01:00
# Subprojects
LabelsForSubprojects: @CTEST_LABELS_FOR_SUBPROJECTS@
# Submission information
2019-11-11 23:01:05 +01:00
SubmitURL: @SUBMIT_URL@
# Dashboard start time
NightlyStartTime: @NIGHTLY_START_TIME@
# Commands for the build/test/submit cycle
ConfigureCommand: "@CMAKE_COMMAND@" "@PROJECT_SOURCE_DIR@"
MakeCommand: @MAKECOMMAND@
2010-03-17 14:00:29 +02:00
DefaultCTestConfigurationType: @DEFAULT_CTEST_CONFIGURATION_TYPE@
2015-04-27 22:25:09 +02:00
# version control
UpdateVersionOnly: @CTEST_UPDATE_VERSION_ONLY@
# CVS options
# Default is "-d -P -A"
CVSCommand: @CVSCOMMAND@
CVSUpdateOptions: @CVS_UPDATE_OPTIONS@
# Subversion options
SVNCommand: @SVNCOMMAND@
2013-03-16 19:13:01 +02:00
SVNOptions: @CTEST_SVN_OPTIONS@
SVNUpdateOptions: @SVN_UPDATE_OPTIONS@
2010-06-23 01:18:35 +03:00
# Git options
GITCommand: @GITCOMMAND@
2016-07-09 11:21:54 +02:00
GITInitSubmodules: @CTEST_GIT_INIT_SUBMODULES@
2010-06-23 01:18:35 +03:00
GITUpdateOptions: @GIT_UPDATE_OPTIONS@
GITUpdateCustom: @CTEST_GIT_UPDATE_CUSTOM@
2014-08-03 19:52:23 +02:00
# Perforce options
P4Command: @P4COMMAND@
P4Client: @CTEST_P4_CLIENT@
P4Options: @CTEST_P4_OPTIONS@
P4UpdateOptions: @CTEST_P4_UPDATE_OPTIONS@
P4UpdateCustom: @CTEST_P4_UPDATE_CUSTOM@
# Generic update command
UpdateCommand: @UPDATE_COMMAND@
UpdateOptions: @UPDATE_OPTIONS@
UpdateType: @UPDATE_TYPE@
2009-11-06 22:07:41 +02:00
# Compiler info
Compiler: @CMAKE_CXX_COMPILER@
2015-11-17 17:22:37 +01:00
CompilerVersion: @CMAKE_CXX_COMPILER_VERSION@
2009-11-06 22:07:41 +02:00
2012-02-18 12:40:36 +02:00
# Dynamic analysis (MemCheck)
PurifyCommand: @PURIFYCOMMAND@
ValgrindCommand: @VALGRIND_COMMAND@
ValgrindCommandOptions: @VALGRIND_COMMAND_OPTIONS@
2020-08-30 11:54:41 +02:00
DrMemoryCommand: @DRMEMORY_COMMAND@
DrMemoryCommandOptions: @DRMEMORY_COMMAND_OPTIONS@
2015-04-27 22:25:09 +02:00
MemoryCheckType: @MEMORYCHECK_TYPE@
MemoryCheckSanitizerOptions: @MEMORYCHECK_SANITIZER_OPTIONS@
MemoryCheckCommand: @MEMORYCHECK_COMMAND@
MemoryCheckCommandOptions: @MEMORYCHECK_COMMAND_OPTIONS@
MemoryCheckSuppressionFile: @MEMORYCHECK_SUPPRESSIONS_FILE@
2012-02-18 12:40:36 +02:00
# Coverage
CoverageCommand: @COVERAGE_COMMAND@
2012-02-18 12:40:36 +02:00
CoverageExtraFlags: @COVERAGE_EXTRA_FLAGS@
2009-10-04 10:30:41 +03:00
# Cluster commands
SlurmBatchCommand: @SLURM_SBATCH_COMMAND@
SlurmRunCommand: @SLURM_SRUN_COMMAND@
# Testing options
# TimeOut is the amount of time in seconds to wait for processes
# to complete during testing. After TimeOut seconds, the
2009-10-04 10:30:41 +03:00
# process will be summarily terminated.
# Currently set to 25 minutes
TimeOut: @DART_TESTING_TIMEOUT@
2009-10-04 10:30:41 +03:00
2015-11-17 17:22:37 +01:00
# During parallel testing CTest will not start a new test if doing
# so would cause the system load to exceed this value.
TestLoad: @CTEST_TEST_LOAD@
2009-10-04 10:30:41 +03:00
UseLaunchers: @CTEST_USE_LAUNCHERS@
CurlOptions: @CTEST_CURL_OPTIONS@
# warning, if you add new options here that have to do with submit,
# you have to update cmCTestSubmitCommand.cxx
2010-11-13 01:00:53 +02:00
# For CTest submissions that timeout, these options
# specify behavior for retrying the submission
CTestSubmitRetryDelay: @CTEST_SUBMIT_RETRY_DELAY@
CTestSubmitRetryCount: @CTEST_SUBMIT_RETRY_COUNT@