0

The Java version should be 1.5, not 1.7. Thanks @LWJGL!

This commit is contained in:
Ethan Lee
2012-02-12 13:46:39 -05:00
parent a307db5206
commit 85c8a97dde

View File

@@ -23,7 +23,7 @@
<target name="compile" depends="clean"> <target name="compile" depends="clean">
<!-- Compile the source code with javac --> <!-- Compile the source code with javac -->
<mkdir dir="built/javac"/> <mkdir dir="built/javac"/>
<javac destdir="built/javac" debug="on" source="1.7" includeantruntime="false"> <javac destdir="built/javac" debug="on" source="1.5" includeantruntime="false">
<src path="src"/> <src path="src"/>
<classpath refid="libPath"/> <classpath refid="libPath"/>
</javac> </javac>