fixed classpath in ant build script, ignore library jar

This commit is contained in:
codeanticode
2013-09-15 17:06:53 -04:00
parent 7e7a5c465a
commit 3cf2194e8f
2 changed files with 3 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
<target name="compile" description="Compile sources">
<condition property="core-built">
<available file="../../../core/library/core.jar; ../../../core/library/jogl-all.jar" />
<available file="../../../core/library/core.jar" />
</condition>
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../../../core/library/core.jar" />
@@ -18,7 +18,7 @@
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../../../core/library/core.jar"
classpath="../../../core/library/core.jar; ../../../core/library/jogl-all.jar; ../../../core/library/gluegen-rt.jar"
nowarn="true"
compiler="org.eclipse.jdt.core.JDTCompilerAdapter">
<compilerclasspath path="../../mode/ecj.jar" />

1
java/libraries/glw/library/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/glw.jar