DartConfiguration.tcl.in 1.8 KB

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