Update of /cvsroot/jake2/jake2
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv7365
Modified Files:
build.xml
Log Message:
New "patch" task for lwjgl1.0 to improve performance.
This updates the original lwjgl.jar with modified versions of:
org.lwjgl.BufferChecks
org.lwjgl.opengl.GLChecks
org.lwjgl.opengl.GL11
Index: build.xml
===================================================================
RCS file: /cvsroot/jake2/jake2/build.xml,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** build.xml 22 Nov 2006 17:20:47 -0000 1.33
--- build.xml 17 Mar 2007 16:11:59 -0000 1.34
***************
*** 15,19 ****
<property name="version" value="cvs"/>
<property name="src" location="src"/>
- <property name="patch" location="patch"/>
<property name="test" location="test"/>
<property name="build" location="build"/>
--- 15,18 ----
***************
*** 169,173 ****
</proguard -->
</target>
!
<!-- everything -->
<target name="all" depends="installer,bindist,srcdist">
--- 168,185 ----
</proguard -->
</target>
!
! <target name="patch" depends="copy">
! <!-- performance patch for lwjgl -->
! <javac destdir="${build}" optimize="off" debug="on" source="1.4">
! <src path="lib/lwjgl/patch"/>
! <include name="org/lwjgl/**"/>
! <classpath refid="build.class.path"/>
! </javac>
! <!-- update original lwjgl.jar -->
! <jar destfile="${dist}/lib/lwjgl.jar" basedir="${build}" update="true">
! <include name="org/lwjgl/**"/>
! </jar>
! </target>
!
<!-- everything -->
<target name="all" depends="installer,bindist,srcdist">
***************
*** 175,179 ****
<!-- dist -->
! <target name="dist" depends="jar,copy">
</target>
--- 187,191 ----
<!-- dist -->
! <target name="dist" depends="jar,copy,patch">
</target>
|