From: <en...@us...> - 2009-05-31 10:12:28
|
Revision: 3218 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3218&view=rev Author: endolf Date: 2009-05-31 10:12:19 +0000 (Sun, 31 May 2009) Log Message: ----------- make sure the release target uses new jars, not just ones lying around from old builds Modified Paths: -------------- trunk/LWJGL/build.xml Modified: trunk/LWJGL/build.xml =================================================================== --- trunk/LWJGL/build.xml 2009-05-28 18:17:04 UTC (rev 3217) +++ trunk/LWJGL/build.xml 2009-05-31 10:12:19 UTC (rev 3218) @@ -64,6 +64,7 @@ <antcall target="generate-debug"/> <antcall target="compile" /> <antcall target="-createdebugjars" /> + <antcall target="jars" /> <antcall target="javadoc" /> <antcall target="applet-release" /> @@ -145,8 +146,9 @@ <fileset dir="${lwjgl.temp}/native/" includes="**/*"/> </delete> - <copy file="${lwjgl.lib}/jinput.jar" todir="${lwjgl.temp}/jar"/> - <copy file="${lwjgl.lib}/lwjgl-debug.jar" todir="${lwjgl.temp}/jar"/> + <copy todir="${lwjgl.temp}/jar"> + <fileset dir="${lwjgl.lib}/" includes="*.jar"/> + </copy> <copy todir="${lwjgl.temp}/native/windows"> <fileset dir="${lwjgl.lib}/windows"> <patternset refid="lwjgl-windows.fileset" /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |