summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build.xml19
1 files changed, 14 insertions, 5 deletions
diff --git a/build.xml b/build.xml
index 974508ca1..86290bb29 100644
--- a/build.xml
+++ b/build.xml
@@ -42,16 +42,25 @@
<!-- set global properties for this build -->
<property name="version" value="0.46dev"/>
- <property name="arch" value="mingw32-"/>
- <property name="archutil" value=""/>
- <!--<property name="archutil" value=""/>-->
<property name="src" location="src"/>
- <property name="gtk" location="c:/devlibs"/>
- <!--<property name="gtk" location="/target"/>-->
<property name="lib" location="lib"/>
<property name="build" location="build"/>
<property name="dist" location="inkscape"/>
+ <!-- Use these settings for the native compiler -->
+ <!-- -->
+ <property name="arch" value="mingw32-"/>
+ <property name="archutil" value=""/>
+ <property name="gtk" location="c:/devlibs"/>
+ <!-- -->
+
+ <!-- Use these settings for the cross compiler -->
+ <!--
+ <property name="arch" value="i686-pc-mingw32-"/>
+ <property name="archutil" value="${arch}"/>
+ <property name="gtk" location="/target"/>
+ -->
+
<!--