Parameterise the signing of the applet, and don't fail if the debug jar is missing.

This commit is contained in:
Jeremy Booth 2009-04-09 20:22:45 +00:00
parent 4deab98889
commit 894828578e
3 changed files with 13 additions and 6 deletions

View File

@ -132,7 +132,7 @@
</delete>
<copy file="${lwjgl.lib}/jinput.jar" todir="${lwjgl.temp}/jar"/>
<copy file="${lwjgl.lib}/lwjgl-debug.jar" todir="${lwjgl.temp}/jar"/>
<copy file="${lwjgl.lib}/lwjgl-debug.jar" todir="${lwjgl.temp}/jar" failonerror="false"/>
<copy todir="${lwjgl.temp}/native/windows">
<fileset dir="${lwjgl.lib}/windows">
<patternset refid="lwjgl-windows.fileset" />

View File

@ -12,12 +12,19 @@
</target>
<target name="applet-release">
<input message="Please type the password for the keystore" addproperty="sign.pwd"/>
<input message="Please enter the keystore" addproperty="keystore.location" defaultvalue="applet/lwjglkeystore"/>
<input message="Please enter the keystore alias" addproperty="keystore.alias" defaultvalue="lwjgl"/>
<input message="Please type the password for the keystore" addproperty="sign.pwd" defaultvalue="123456"/>
<antcall target="-applet">
<param name="keystore" value="signing/matzon_java_code_signing.keystore"/>
<!--
<param name="keystore" value="signing/matzon_java_code_signing.keystore"/>
<param name="alias" value="oddlabs_java_code_signing"/>
<param name="password" value="${sign.pwd}"/>
-->
<param name="keystore" value="${keystore.location}"/>
<param name="alias" value="${keystore.alias}"/>
<param name="password" value="${sign.pwd}"/>
</antcall>
</target>
@ -62,7 +69,7 @@
</jar>
<copy file="${lwjgl.lib}/lwjgl.jar" todir="applet"/>
<copy file="${lwjgl.lib}/lwjgl-debug.jar" todir="applet"/>
<copy file="${lwjgl.lib}/lwjgl-debug.jar" todir="applet" failonerror="false"/>
<copy file="${lwjgl.lib}/lwjgl_util_applet.jar" todir="applet"/>
<copy file="${lwjgl.lib}/lwjgl_util.jar" todir="applet"/>
<copy file="${lwjgl.lib}/jinput.jar" todir="applet"/>

View File

@ -91,8 +91,8 @@
<include name="lwjgl64.dll" />
<include name="OpenAL32.dll" />
<include name="OpenAL64.dll" />
<include name="jinput-dx8.dll" />
<include name="jinput-raw.dll" />
<include name="jinput-dx8*.dll" />
<include name="jinput-raw*.dll" />
</patternset>
<!-- Files to include in linux, glibc2.3 package -->