mirror of
https://github.com/shadowfacts/jinput-arm64.git
synced 2025-12-06 08:01:59 +01:00
Updated build scripts to build java 1.4 byte code
This commit is contained in:
parent
c15d74238d
commit
ae942dd3cc
|
|
@ -27,7 +27,7 @@
|
||||||
<!-- Both srcdir and destdir should be package roots. -->
|
<!-- Both srcdir and destdir should be package roots. -->
|
||||||
<!-- They could be different of course; in that case NetBeans can also be set -->
|
<!-- They could be different of course; in that case NetBeans can also be set -->
|
||||||
<!-- up to compile to a different filesystem in the same way; see Compiler Types: -->
|
<!-- up to compile to a different filesystem in the same way; see Compiler Types: -->
|
||||||
<javac srcdir="src/java" destdir="classes" debug="true" deprecation="true" source="1.4">
|
<javac srcdir="src/java" destdir="classes" debug="true" deprecation="true" source="1.4" target="1.4">
|
||||||
<include name="net/**"/>
|
<include name="net/**"/>
|
||||||
<!-- To add something to the classpath: -->
|
<!-- To add something to the classpath: -->
|
||||||
<classpath>
|
<classpath>
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@
|
||||||
<!-- Both srcdir and destdir should be package roots. -->
|
<!-- Both srcdir and destdir should be package roots. -->
|
||||||
<!-- They could be different of course; in that case NetBeans can also be set -->
|
<!-- They could be different of course; in that case NetBeans can also be set -->
|
||||||
<!-- up to compile to a different filesystem in the same way; see Compiler Types: -->
|
<!-- up to compile to a different filesystem in the same way; see Compiler Types: -->
|
||||||
<javac srcdir="src/java" destdir="classes" debug="true" deprecation="true" source="1.4">
|
<javac srcdir="src/java" destdir="classes" debug="true" deprecation="true" source="1.4" target="1.4">
|
||||||
<!-- To add something to the classpath: -->
|
<!-- To add something to the classpath: -->
|
||||||
<classpath>
|
<classpath>
|
||||||
<pathelement location="lib/jinput.jar"/>
|
<pathelement location="lib/jinput.jar"/>
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target depends="init" name="compile">
|
<target depends="init" name="compile">
|
||||||
<javac debug="true" deprecation="true" destdir="classes" source="1.4" srcdir="src">
|
<javac debug="true" deprecation="true" destdir="classes" source="1.4" target="1.4" srcdir="src">
|
||||||
<classpath>
|
<classpath>
|
||||||
<pathelement location="../../coreAPI/bin/jinput.jar"/>
|
<pathelement location="../../coreAPI/bin/jinput.jar"/>
|
||||||
<pathelement location="../../coreAPI/lib/jutils.jar"/>
|
<pathelement location="../../coreAPI/lib/jutils.jar"/>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue