Skip to content

Commit d2205a9

Browse files
committed
move apple.jar into core because it needs its own ThinkDifferent
1 parent ecfc0ac commit d2205a9

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

app/build.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@
3535
encoding="UTF-8"
3636
includeAntRuntime="false"
3737
classpath="../core/library/core.jar;
38-
lib/ant.jar; lib/ant-launcher.jar;
39-
lib/apple.jar;
38+
../core/apple.jar;
39+
lib/ant.jar;
40+
lib/ant-launcher.jar;
4041
lib/jna.jar"
4142
debug="on"
4243
nowarn="true"
File renamed without changes.

core/build.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,17 @@
3232
</condition>
3333
<!--<echo message="compiler is ${build.compiler}" />-->
3434

35+
<!-- link against apple.jar for the ThinkDifferent class -->
3536
<mkdir dir="bin" />
3637
<javac source="1.7"
3738
target="1.7"
3839
encoding="UTF-8"
3940
includeAntRuntime="false"
4041
debug="true"
4142
srcdir="src" destdir="bin"
42-
classpath="library/jogl-all.jar; library/gluegen-rt.jar"
43+
classpath="apple.jar;
44+
library/jogl-all.jar;
45+
library/gluegen-rt.jar"
4346
nowarn="true">
4447
<!-- kinda gross, but if not using the JDT, this just ignored anyway -->
4548
<compilerclasspath path="${jdt.jar}; ../java/mode/jdtCompilerAdapter.jar" />

0 commit comments

Comments
 (0)