summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2005-10-11 11:53:02 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2005-10-11 11:53:02 +0000
commit59a434de1b5fbc24383586d21412d3bd154e1013 (patch)
tree5596a2abeb39956d2d18c5176159888e0b9104f0 /config
parent6f850988f453d6ced9661271ea4a5ed0be83d0e9 (diff)
downloadscala-59a434de1b5fbc24383586d21412d3bd154e1013.tar.gz
scala-59a434de1b5fbc24383586d21412d3bd154e1013.tar.bz2
scala-59a434de1b5fbc24383586d21412d3bd154e1013.zip
Changed the way to set properties.
Diffstat (limited to 'config')
-rw-r--r--config/build.TEMPLATE.properties18
-rw-r--r--config/build.default.properties38
2 files changed, 56 insertions, 0 deletions
diff --git a/config/build.TEMPLATE.properties b/config/build.TEMPLATE.properties
new file mode 100644
index 0000000000..5c22052057
--- /dev/null
+++ b/config/build.TEMPLATE.properties
@@ -0,0 +1,18 @@
+# The path to the old Scala library JAR package and source directory.
+oslib.jar=
+oslib.src=
+
+# The path to the old Scala tools.
+ostools.jar=
+
+# The path to the Jaco/Pico compiler.
+jaco.jar=
+
+# The path to the FJBG byte-code generation library.
+fjbg.jar=
+
+# The path to the MSIL byte-code generation library.
+msil.jar=
+
+# Other custom properties come here
+nsc.skip= \ No newline at end of file
diff --git a/config/build.default.properties b/config/build.default.properties
new file mode 100644
index 0000000000..cfce6c53d1
--- /dev/null
+++ b/config/build.default.properties
@@ -0,0 +1,38 @@
+# These are the default properties for the Scala build script.
+
+# DO NOT CHANGE THIS FILE! Changes should be made in the
+# 'build.USER_NAME.properties' file, that will override the properties in
+# this file.
+
+nsc.logging=none
+nsc.stop=
+nsc.skip=
+nsc.check=
+nsc.nslib.excludes=${basedir}/build.support/nsc.nslib.excludes
+nsc.nstools.excludes=${basedir}/build.support/nsc.nstools.excludes
+
+oslib.jar=/usr/local/lib/scala.jar
+oslib.src=/usr/local/share/scala/src
+ostools.jar=/usr/local/lib/tools.jar
+jaco.jar=/usr/local/lib/jaco.jar
+fjbg.jar=/usr/local/lib/fjbg.jar
+msil.jar=/usr/local/lib/msil.jar
+java.jar=${java.home}/jre/lib/rt.jar
+
+ant.jar=${ant.home}/lib/ant.jar
+
+sources.dir=${basedir}/sources
+newsources.dir=${basedir}/newsources
+
+build.dir=${basedir}/build
+build.nslib.dir=${build.dir}/nslib
+build.osc-nstools.dir=${build.dir}/osc-nstools
+build.nstools.dir=${build.dir}/nstools
+build.oslib.dir=${build.dir}/oslib
+build.ostools.dir=${build.dir}/ostools
+distrib.dir=${basedir}/dist
+distrib.current.prefix=nscala
+
+distrib.nslib.jar=nslib.jar
+distrib.nstools.jar=nstools.jar
+distrib.osc-nstools.jar=osc-nstools.jar \ No newline at end of file