summaryrefslogtreecommitdiff
path: root/config/build.default.properties
blob: 042024cc815d8468c6753f1471299f4019b68a14 (plain) (blame)
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
################################################################################
# DEFAULT PROPERTIES FOR SABBUS                                                #
################################################################################
# These are default values for all properties used by SABBUS. DO NOT CHANGE them
# in this file. All properties can be overriden in the
# build.USER_NAME.properties file.
# $Id$
################################################################################

# CONFIGURATION OF NSC
################################################################################

# What NSC should output during compilation. Either 'none', 'verbose', 'debug'.
nsc.logging=none

# After which compile phase NSC should stop. This will induce build errors.
nsc.stop=

# A comma-separated list of compile phases that NSC should skip.
nsc.skip=

# A comma-separated list of compile phases which result should be checked for
# consistency.
nsc.check=

# The name of a file that lists files that should be excluded when building
# the new Scala library. This file MUST EXIST.
nsc.nslib.excludes=${build.support.dir}/nsc.nslib.excludes

# The name of a file that lists files that should be excluded when building
# the new Scala tools. This file MUST EXIST.
nsc.nstools.excludes=${build.support.dir}/nsc.nstools.excludes

# The name of a file that lists files that should be excluded when building
# the new Scala tools. This file MUST EXIST.
nsc.osc-nstools.excludes=${build.support.dir}/nsc.osc-nstools.excludes

# LOCATION OF PRE-COMPILED LIBRARIES
################################################################################

# The path to the old Scala library ('scala.jar').
oslib.jar=/usr/local/lib/scala.jar

# The path to the old Scala library sources.
oslib.src=/usr/local/share/scala/src

# The path to the old Scala tools ('tools.jar').
ostools.jar=/usr/local/lib/tools.jar

# The path to the JaCo compiler ('jaco.jar).
jaco.jar=/usr/local/lib/jaco.jar

# The path to the FJBG byte-code generation library ('fjbg.jar').
fjbg.jar=/usr/local/lib/fjbg.jar

# The path to the MSIL byte-code generation library ('fjbg.jar').
msil.jar=/usr/local/lib/msil.jar

# The path to the MSIL DLL library ('scala.dll').
scala.dll=/usr/local/lib/scala.dll

# The path to the Java base classes ('rt.jar' or 'classes.jar').
java.jar=${java.home}/jre/lib/rt.jar

# The path to the Ant base classes ('ant.jar').
ant.jar=${ant.home}/lib/ant.jar

# LOCATION OF BUILD PRODUCTS
################################################################################

# The directory in which all build products live.
build.dir=${basedir}/build

# The directory to which the new Scala library is compiled.
build.nslib.dir=${build.dir}/nslib

# The directory to which the new Scala tools (built with OSC) are compiled.
build.osc-nstools.dir=${build.dir}/osc-nstools

# The directory to which the new Scala tools are compiled.
build.nstools.dir=${build.dir}/nstools

# LOCATION AND STRUCTURE OF THE DISTRIBUTION
# Overriding these properties will produce a non-standard distribution that
# might not be useable.
################################################################################

# The directory to which a new distribution will be added.
distrib.dir=${basedir}/distribs

# The prefix of the directory in which a distribution will reside. This will be
# completed by the date of the distribution.
distrib.current.prefix=nscala

# The JAR file in which the new Scala library should be archived.
distrib.nslib.jar=nslib.jar

# The JAR file in which the new Scala tools should be archived.
distrib.nstools.jar=nstools.jar

# The JAR file in which the new Scala tools (built with OSC) should be archived.
distrib.osc-nstools.jar=osc-nstools.jar