DartConfiguration.tcl.in 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. # This file is configured by CMake automatically as DartConfiguration.tcl
  2. # If you choose not to use CMake, this file may be hand configured, by
  3. # filling in the required variables.
  4. # Configuration directories and files
  5. SourceDirectory: @PROJECT_SOURCE_DIR@
  6. BuildDirectory: @PROJECT_BINARY_DIR@
  7. # Where to place the cost data store
  8. CostDataFile: @CTEST_COST_DATA_FILE@
  9. # Site is something like machine.domain, i.e. pragmatic.crd
  10. Site: @SITE@
  11. # Build name is osname-revision-compiler, i.e. Linux-2.4.2-2smp-c++
  12. BuildName: @BUILDNAME@
  13. # Subprojects
  14. LabelsForSubprojects: @CTEST_LABELS_FOR_SUBPROJECTS@
  15. # Submission information
  16. SubmitURL: @SUBMIT_URL@
  17. # Dashboard start time
  18. NightlyStartTime: @NIGHTLY_START_TIME@
  19. # Commands for the build/test/submit cycle
  20. ConfigureCommand: "@CMAKE_COMMAND@" "@PROJECT_SOURCE_DIR@"
  21. MakeCommand: @MAKECOMMAND@
  22. DefaultCTestConfigurationType: @DEFAULT_CTEST_CONFIGURATION_TYPE@
  23. # version control
  24. UpdateVersionOnly: @CTEST_UPDATE_VERSION_ONLY@
  25. # CVS options
  26. # Default is "-d -P -A"
  27. CVSCommand: @CVSCOMMAND@
  28. CVSUpdateOptions: @CVS_UPDATE_OPTIONS@
  29. # Subversion options
  30. SVNCommand: @SVNCOMMAND@
  31. SVNOptions: @CTEST_SVN_OPTIONS@
  32. SVNUpdateOptions: @SVN_UPDATE_OPTIONS@
  33. # Git options
  34. GITCommand: @GITCOMMAND@
  35. GITInitSubmodules: @CTEST_GIT_INIT_SUBMODULES@
  36. GITUpdateOptions: @GIT_UPDATE_OPTIONS@
  37. GITUpdateCustom: @CTEST_GIT_UPDATE_CUSTOM@
  38. # Perforce options
  39. P4Command: @P4COMMAND@
  40. P4Client: @CTEST_P4_CLIENT@
  41. P4Options: @CTEST_P4_OPTIONS@
  42. P4UpdateOptions: @CTEST_P4_UPDATE_OPTIONS@
  43. P4UpdateCustom: @CTEST_P4_UPDATE_CUSTOM@
  44. # Generic update command
  45. UpdateCommand: @UPDATE_COMMAND@
  46. UpdateOptions: @UPDATE_OPTIONS@
  47. UpdateType: @UPDATE_TYPE@
  48. # Compiler info
  49. Compiler: @CMAKE_CXX_COMPILER@
  50. CompilerVersion: @CMAKE_CXX_COMPILER_VERSION@
  51. # Dynamic analysis (MemCheck)
  52. PurifyCommand: @PURIFYCOMMAND@
  53. ValgrindCommand: @VALGRIND_COMMAND@
  54. ValgrindCommandOptions: @VALGRIND_COMMAND_OPTIONS@
  55. MemoryCheckType: @MEMORYCHECK_TYPE@
  56. MemoryCheckSanitizerOptions: @MEMORYCHECK_SANITIZER_OPTIONS@
  57. MemoryCheckCommand: @MEMORYCHECK_COMMAND@
  58. MemoryCheckCommandOptions: @MEMORYCHECK_COMMAND_OPTIONS@
  59. MemoryCheckSuppressionFile: @MEMORYCHECK_SUPPRESSIONS_FILE@
  60. # Coverage
  61. CoverageCommand: @COVERAGE_COMMAND@
  62. CoverageExtraFlags: @COVERAGE_EXTRA_FLAGS@
  63. # Cluster commands
  64. SlurmBatchCommand: @SLURM_SBATCH_COMMAND@
  65. SlurmRunCommand: @SLURM_SRUN_COMMAND@
  66. # Testing options
  67. # TimeOut is the amount of time in seconds to wait for processes
  68. # to complete during testing. After TimeOut seconds, the
  69. # process will be summarily terminated.
  70. # Currently set to 25 minutes
  71. TimeOut: @DART_TESTING_TIMEOUT@
  72. # During parallel testing CTest will not start a new test if doing
  73. # so would cause the system load to exceed this value.
  74. TestLoad: @CTEST_TEST_LOAD@
  75. UseLaunchers: @CTEST_USE_LAUNCHERS@
  76. CurlOptions: @CTEST_CURL_OPTIONS@
  77. # warning, if you add new options here that have to do with submit,
  78. # you have to update cmCTestSubmitCommand.cxx
  79. # For CTest submissions that timeout, these options
  80. # specify behavior for retrying the submission
  81. CTestSubmitRetryDelay: @CTEST_SUBMIT_RETRY_DELAY@
  82. CTestSubmitRetryCount: @CTEST_SUBMIT_RETRY_COUNT@