DartConfiguration.tcl.in 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. # Site is something like machine.domain, i.e. pragmatic.crd
  8. Site: @SITE@
  9. # Build name is osname-revision-compiler, i.e. Linux-2.4.2-2smp-c++
  10. BuildName: @BUILDNAME@
  11. # Submission information
  12. DropSite: @DROP_SITE@
  13. DropLocation: @DROP_LOCATION@
  14. DropSiteUser: @DROP_SITE_USER@
  15. DropSitePassword: @DROP_SITE_PASSWORD@
  16. DropSiteMode: @DROP_SITE_MODE@
  17. DropMethod: @DROP_METHOD@
  18. TriggerSite: @TRIGGER_SITE@
  19. ScpCommand: @SCPCOMMAND@
  20. # Dashboard start time
  21. NightlyStartTime: @NIGHTLY_START_TIME@
  22. # Commands for the build/test/submit cycle
  23. ConfigureCommand: "@CMAKE_COMMAND@" "@PROJECT_SOURCE_DIR@"
  24. MakeCommand: @MAKECOMMAND@
  25. # CVS options
  26. # Default is "-d -P -A"
  27. CVSCommand: @CVSCOMMAND@
  28. CVSUpdateOptions: @CVS_UPDATE_OPTIONS@
  29. # Subversion options
  30. SVNCommand: @SVNCOMMAND@
  31. SVNUpdateOptions: @SVN_UPDATE_OPTIONS@
  32. # Generic update command
  33. UpdateCommand: @UPDATE_COMMAND@
  34. UpdateOptions: @UPDATE_OPTIONS@
  35. UpdateType: @UPDATE_TYPE@
  36. # Dynamic analisys and coverage
  37. PurifyCommand: @PURIFYCOMMAND@
  38. ValgrindCommand: @VALGRIND_COMMAND@
  39. ValgrindCommandOptions: @VALGRIND_COMMAND_OPTIONS@
  40. MemoryCheckCommand: @MEMORYCHECK_COMMAND@
  41. MemoryCheckCommandOptions: @MEMORYCHECK_COMMAND_OPTIONS@
  42. MemoryCheckSuppressionFile: @MEMORYCHECK_SUPPRESSIONS_FILE@
  43. CoverageCommand: @COVERAGE_COMMAND@
  44. # Testing options
  45. # TimeOut is the amount of time in seconds to wait for processes
  46. # to complete during testing. After TimeOut seconds, the
  47. # process will be summaily terminated.
  48. # Currently set to 25 minutes
  49. TimeOut: @DART_TESTING_TIMEOUT@