From: <en...@us...> - 2009-04-10 14:28:00
|
Revision: 3200 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3200&view=rev Author: endolf Date: 2009-04-10 14:27:58 +0000 (Fri, 10 Apr 2009) Log Message: ----------- Fix the release build not outputting an LWJGL jar (oops) Modified Paths: -------------- trunk/LWJGL/build.xml Modified: trunk/LWJGL/build.xml =================================================================== --- trunk/LWJGL/build.xml 2009-04-09 21:18:19 UTC (rev 3199) +++ trunk/LWJGL/build.xml 2009-04-10 14:27:58 UTC (rev 3200) @@ -58,15 +58,17 @@ <antcall target="-initialize" /> <!-- compile and create jars --> - <antcall target="generate-all"/> + <antcall target="generate-all"/> <antcall target="compile" /> - <antcall target="javadoc" /> <antcall target="-createjars" /> - <antcall target="debug-jars"/> - <antcall target="applet-release" /> + <antcall target="generate-debug"/> + <antcall target="compile" /> + <antcall target="-createdebugjars" /> + <antcall target="javadoc" /> + <antcall target="applet-release" /> <!-- copy resources to res folder --> - <copy todir="${lwjgl.temp}/res"> + <copy todir="${lwjgl.temp}/res"> <fileset dir="res"/> </copy> @@ -96,15 +98,17 @@ </move> </target> - <target name="debug-jars" description="Creates the Java archives ONLY, the debug version of lwjgl jar, and places them in libs/" depends="jars"> - <!-- <target name="jars" description="Creates the Java archives ONLY and places them in libs/" depends="-initialize, compile, -createjars">--> - <!--<target name="jars" description="Creates the Java archives ONLY and places them in libs/" depends="-initialize, compile, -createjars">--> - <antcall target="generate-debug"/> - <antcall target="compile"/> - <antcall target="-createjars"/> - <move tofile="libs/lwjgl-debug.jar" file="${lwjgl.temp}/jar/lwjgl.jar"/> + <!-- Packages the java files --> + <target name="-createdebugjars"> + <!-- Create lwjgl.jar --> + <jar destfile="${lwjgl.temp}/jar/lwjgl-debug.jar" taskname="lwjgl-debug.jar"> + <fileset refid="lwjgl.fileset" /> + <manifest> + <attribute name="Sealed" value="true"/> + </manifest> + </jar> </target> - + <!-- Packages the java files --> <target name="-createjars"> <!-- Create lwjgl.jar --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |