add encoding and disable ant libs on build scripts, working to fix up

windows version
This commit is contained in:
benfry
2010-02-07 13:54:02 +00:00
parent 5449d452e7
commit 4975c8b693
8 changed files with 28 additions and 6 deletions

View File

@@ -332,8 +332,12 @@
<!-- Windows -->
<!-- - - - - - - - -->
<target name="windows-clean" depends="subprojects-clean" description="Clean windows version">
<delete dir="windows/work" />
<target name="windows-clean" depends="subprojects-clean"
description="Clean windows version">
<delete dir="windows">
<include name="work" />
<include name="processing-*" />
</delete>
</target>
<target name="windows-checkos" unless="windows">
@@ -420,7 +424,8 @@
<!-- Run It! -->
<!-- - - - - - - - -->
<target name="clean" description="Perform a spring cleaning" depends="linux-clean, windows-clean, macosx-clean, subprojects-clean">
<target name="clean" description="Perform a spring cleaning"
depends="linux-clean, windows-clean, macosx-clean, subprojects-clean">
</target>
</project>

View File

@@ -13,7 +13,10 @@
<preproc dir="${basedir}/src/processing/core" />
<mkdir dir="bin" />
<javac target="1.5" srcdir="src" destdir="bin"/>
<javac target="1.5"
encoding="UTF-8"
includeAntRuntime="false"
srcdir="src" destdir="bin"/>
</target>
<target name="build" depends="compile" description="Build core library">

View File

@@ -15,6 +15,8 @@
<mkdir dir="bin" />
<javac target="1.5"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../core/core.jar" />
</target>

View File

@@ -15,6 +15,8 @@
<mkdir dir="bin" />
<javac target="1.5"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../core/core.jar" />
</target>

View File

@@ -15,6 +15,8 @@
<mkdir dir="bin" />
<javac target="1.5"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../core/core.jar; library/jogl.jar" />
</target>

View File

@@ -15,6 +15,8 @@
<mkdir dir="bin" />
<javac target="1.5"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../core/core.jar; library/itext.jar" />
</target>

View File

@@ -13,7 +13,10 @@
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../core/core.jar" />
<mkdir dir="bin" />
<javac target="1.5" srcdir="src" destdir="bin"
<javac target="1.5"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../core/core.jar; library/RXTXcomm.jar" />
</target>

View File

@@ -13,7 +13,10 @@
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../core/core.jar" />
<mkdir dir="bin" />
<javac target="1.5" srcdir="src" destdir="bin"
<javac target="1.5"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../core/core.jar; QTJava.zip" />
</target>