Moved the optimization compile parameter into a property to make it easier

to change and more obvious.


git-svn-id: https://samskivert.googlecode.com/svn/trunk@463 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2001-11-20 21:33:49 +00:00
parent bbb033b7e1
commit 003d16daf0
+2 -1
View File
@@ -7,6 +7,7 @@
<property name="doc.overview" value="com/samskivert/overview.html"/>
<property name="copyright.holder" value="Michael Bayne"/>
<property name="build.compiler" value="jikes"/>
<property name="build.optimize" value="on"/>
<property name="java.libraries" value="/usr/share/java"/>
<!-- things you probably don't want to change -->
@@ -40,7 +41,7 @@
<!-- build the java class files -->
<target name="compile" depends="prepare">
<javac srcdir="${src.dir}" destdir="${deploy.dir}/classes"
debug="on" optimize="on" deprecation="off">
debug="on" optimize="${build.optimize}" deprecation="off">
<classpath refid="classpath"/>
</javac>
</target>