File: Utility.conf.in

package info (click to toggle)
dart 0.20020805-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,688 kB
  • ctags: 172
  • sloc: tcl: 4,979; perl: 213; makefile: 61; cpp: 42; sh: 2
file content (109 lines) | stat: -rw-r--r-- 3,082 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# 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
DartRoot: @DART_ROOT@
SourceDirectory: @PROJECT_SOURCE_DIR@ 
BuildDirectory: @PROJECT_BINARY_DIR@ 

# Dart options

# Project Home Page
ProjectURL: @PROJECT_URL@

# CVS options
# Default is "-d -P -A"
CVSUpdateOptions: @CVS_UPDATE_OPTIONS@

# Verbose build On/Off
# If On, will display build log as it is generated
VerboseBuild: @VERBOSE_BUILD@

# 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@  

# Submission information
DropSite: @DROP_SITE@  
DropLocation: @DROP_LOCATION@ 
DropSiteUser: @DROP_SITE_USER@ 
DropSitePassword: @DROP_SITE_PASSWORD@
DropSiteMode: @DROP_SITE_MODE@ 
DropMethod: @DROP_METHOD@
TriggerSite: @TRIGGER_SITE@ 

# Dashboard start time
NightlyStartTime: @NIGHTLY_START_TIME@ 

# Manual Rollup
RollupURL:   @ROLLUP_URL@ 

# Project information
CVSWebURL:   @CVS_WEB_URL@ 
CVSROOT:     @CVS_WEB_CVSROOT@ 

# Optional Dart processes
# Doxygen
UseDoxygen:  @USE_DOXYGEN@ 
DoxygenURL:  @DOXYGEN_URL@ 
BuildDoxygen:  @BUILD_DOXYGEN@ 
DoxygenConfig: @DOXYGEN_CONFIG@

# Gnats
UseGnats:    @USE_GNATS@ 
GnatsWebURL: @GNATS_WEB_URL@

# Continuous email delivery variables
# DeliverContinuousEmail should be On/Off
# If DeliverContinuousEmail is On, _all_ of the other options must be set!
# These variables are from the server's perspective, not the client.
DeliverContinuousEmail: @DELIVER_CONTINUOUS_EMAIL@
ContinuousFrom: @CONTINUOUS_FROM@
DefaultContinuousDomain: @DEFAULT_CONTINUOUS_DOMAIN@
SMTPMailhost: @SMTP_MAILHOST@ 
ContinuousMonitorList: @CONTINUOUS_MONITOR_LIST@
ContinuousBaseURL: @CONTINUOUS_BASE_URL@
ContinuousProject: @PROJECT_NAME@


# Commands for the build/test/submit cycle 
ConfigureCommand: @CMAKE_COMMAND@ @PROJECT_SOURCE_DIR@
CMakeCommand: @CMAKE_COMMAND@
MakeCommand: @MAKECOMMAND@ 
CVSCommand: @CVSCOMMAND@ 
TclshCommand: @TCL_TCLSH@ 
JavaCommand: @JAVACOMMAND@ 
ScpCommand: @SCPCOMMAND@ 
PurifyCommand: @PURIFYCOMMAND@
# Compression commands  
GunzipCommand: @GUNZIPCOMMAND@ 
CompressionCommand: @COMPRESSIONCOMMAND@ 
CompressionType: @COMPRESSIONCOMMAND@ 


# Testing options
# TimeOut is the amount of time in seconds to wait for processes
# to complete during testing.  After TimeOut seconds, the
# process will be summaily terminated.
# Currently set to 25 minutes
TimeOut: @DART_TESTING_TIMEOUT@

# A list of variables that need to be passed through 
# Cygwin's name mangler
MangledPathNames: \
                  BuildDirectory \
                  CMakeCommand \
                  CompressionCommand \
                  CVSCommand \
                  DartRoot \
                  GunzipCommand \
                  JavaCommand \
                  MakeCommand \
                  PurifyCommand \
                  ScpCommand \
                  SourceDirectory \
                  TclshCommand