From: <eli...@us...> - 2007-09-05 12:04:10
|
Revision: 2886 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=2886&view=rev Author: elias_naur Date: 2007-08-25 07:47:24 -0700 (Sat, 25 Aug 2007) Log Message: ----------- tweaked build.xml to get compile working again Modified Paths: -------------- trunk/LWJGL/build.xml trunk/LWJGL/src/java/org/lwjgl/d3d/DisplayImplementation.java Modified: trunk/LWJGL/build.xml =================================================================== --- trunk/LWJGL/build.xml 2007-08-25 12:57:50 UTC (rev 2885) +++ trunk/LWJGL/build.xml 2007-08-25 14:47:24 UTC (rev 2886) @@ -309,6 +309,7 @@ <!-- Create ONLY the jar archives --> <target name="jars" description="Creates the Java archives ONLY and places them in libs/" depends="-initialize, generate-all, compile, -createjars"> + <!--<target name="jars" description="Creates the Java archives ONLY and places them in libs/" depends="-initialize, compile, -createjars">--> <move todir="libs/"> <fileset dir="${lwjgl.temp}/jar"> <include name="*.jar"/> @@ -532,11 +533,12 @@ <!-- Compiles the Java source code --> <target name="compile" description="Compiles the java source code" depends="-initialize"> - <javac debug="yes" destdir="${lwjgl.bin}" includes="org/lwjgl/opengl/**" source="1.4" target="1.4" classpath="${lwjgl.lib}/jinput.jar" taskname="core"> + <javac debug="yes" destdir="${lwjgl.bin}" source="1.4" target="1.4" classpath="${lwjgl.lib}/jinput.jar" taskname="core"> <src path="${lwjgl.src}/java/"/> <src path="${lwjgl.src}/generated/"/> <include name="org/lwjgl/*.java"/> <include name="org/lwjgl/input/**"/> + <include name="org/lwjgl/d3d/**"/> <include name="org/lwjgl/opengl/**"/> <include name="org/lwjgl/openal/**"/> <include name="org/lwjgl/util/**"/> Modified: trunk/LWJGL/src/java/org/lwjgl/d3d/DisplayImplementation.java =================================================================== --- trunk/LWJGL/src/java/org/lwjgl/d3d/DisplayImplementation.java 2007-08-25 12:57:50 UTC (rev 2885) +++ trunk/LWJGL/src/java/org/lwjgl/d3d/DisplayImplementation.java 2007-08-25 14:47:24 UTC (rev 2886) @@ -36,7 +36,6 @@ import java.nio.IntBuffer; import org.lwjgl.LWJGLException; -import org.lwjgl.input.InputImplementation; interface DisplayImplementation extends InputImplementation { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |