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
+4 -1
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>