Skip to content

Commit

Permalink
Make build.xml use the more common path for processing
Browse files Browse the repository at this point in the history
  • Loading branch information
gohai committed Nov 26, 2015
1 parent 3201583 commit 008d9fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@

<target name="compile" description="Compile sources">
<condition property="core-built">
<available file="../processing-master/core/library/core.jar" />
<available file="../processing/core/library/core.jar" />
</condition>
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../processing-master/core/library/core.jar" />
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../processing/core/library/core.jar" />

<mkdir dir="bin" />
<javac source="1.7"
target="1.7"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../processing-master/core/library/core.jar"
classpath="../processing/core/library/core.jar"
nowarn="true">
<compilerclasspath path="../../mode/org.eclipse.jdt.core.jar;
../../mode/jdtCompilerAdapter.jar" />
Expand All @@ -27,7 +27,7 @@

<target name="javadoc">
<javadoc bottom="Processing Library Simple Touch by Gottfried Haider"
classpath="../processing-master/core/library/core.jar"
classpath="../processing/core/library/core.jar"
destdir="reference"
verbose="false"
stylesheetfile="reference/stylesheet.css"
Expand Down

0 comments on commit 008d9fc

Please sign in to comment.