summaryrefslogtreecommitdiffstats
path: root/make/build.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-01-22 18:41:21 +0100
committerSven Gothel <[email protected]>2012-01-22 18:41:21 +0100
commit8eda2ed64fffea8242f5d58a9e5f867579cf3214 (patch)
treedc4c4fee36c45617d4273a3c4fab8d901529261b /make/build.xml
parent2221eac3d1a462c75847bd095641ca12d7c250f9 (diff)
Fix Bug 516 (Determine Java Version) / See gluegen: 64639b805a32338385421f168e12c1ef7f749d00
Diffstat (limited to 'make/build.xml')
-rwxr-xr-xmake/build.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml
index 224117b..00ad211 100755
--- a/make/build.xml
+++ b/make/build.xml
@@ -132,7 +132,13 @@
<pathelement location="${build}/j-ogg-oggd.jar" />
<pathelement location="${build}/j-ogg-vorbisd.jar" />
</path>
- <javac destdir="${classes.dir}" source="1.4" debug="true" debuglevel="source,lines">
+ <javac destdir="${classes.dir}"
+ includeantruntime="false"
+ memoryMaximumSize="${javac.memorymax}"
+ source="${target.sourcelevel}"
+ target="${target.targetlevel}"
+ bootclasspath="${target.rt.jar}"
+ debug="${javacdebug}" debuglevel="${javacdebuglevel}">
<src path="${src.dir}" />
<classpath refid="joal.classpath" />
</javac>