DartConfiguration.tcl.in 3.2 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. DrMemoryCommand: @DRMEMORY_COMMAND@
  56. DrMemoryCommandOptions: @DRMEMORY_COMMAND_OPTIONS@
  57. CudaSanitizerCommand: @CUDA_SANITIZER_COMMAND@
  58. CudaSanitizerCommandOptions: @CUDA_SANITIZER_COMMAND_OPTIONS@
  59. MemoryCheckType: @MEMORYCHECK_TYPE@
  60. MemoryCheckSanitizerOptions: @MEMORYCHECK_SANITIZER_OPTIONS@
  61. MemoryCheckCommand: @MEMORYCHECK_COMMAND@
  62. MemoryCheckCommandOptions: @MEMORYCHECK_COMMAND_OPTIONS@
  63. MemoryCheckSuppressionFile: @MEMORYCHECK_SUPPRESSIONS_FILE@
  64. # Coverage
  65. CoverageCommand: @COVERAGE_COMMAND@
  66. CoverageExtraFlags: @COVERAGE_EXTRA_FLAGS@
  67. # Testing options
  68. # TimeOut is the amount of time in seconds to wait for processes
  69. # to complete during testing. After TimeOut seconds, the
  70. # process will be summarily terminated.
  71. # Currently set to 25 minutes
  72. TimeOut: @DART_TESTING_TIMEOUT@
  73. # During parallel testing CTest will not start a new test if doing
  74. # so would cause the system load to exceed this value.
  75. TestLoad: @CTEST_TEST_LOAD@
  76. UseLaunchers: @CTEST_USE_LAUNCHERS@
  77. CurlOptions: @CTEST_CURL_OPTIONS@
  78. # warning, if you add new options here that have to do with submit,
  79. # you have to update cmCTestSubmitCommand.cxx
  80. # For CTest submissions that timeout, these options
  81. # specify behavior for retrying the submission
  82. CTestSubmitRetryDelay: @CTEST_SUBMIT_RETRY_DELAY@
  83. CTestSubmitRetryCount: @CTEST_SUBMIT_RETRY_COUNT@