summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2006-11-16 21:46:35 +0000
committerishmal <ishmal@users.sourceforge.net>2006-11-16 21:46:35 +0000
commit66edd564ae408032f4d8477585e0b1165d3c8716 (patch)
tree8abae88c112d579c67809e762158cd29572270b9 /build.xml
parentfix circ dep check (diff)
downloadinkscape-66edd564ae408032f4d8477585e0b1165d3c8716.tar.gz
inkscape-66edd564ae408032f4d8477585e0b1165d3c8716.zip
Update to gtk2.10
(bzr r1964)
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml12
1 files changed, 8 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index 00894d92f..f40afe4f0 100644
--- a/build.xml
+++ b/build.xml
@@ -6,10 +6,10 @@
<!-- set global properties for this build -->
<property name="version" location="0.45"/>
<property name="src" location="src"/>
- <property name="gtk" location="c:/gtk28"/>
+ <property name="gtk" location="c:/gtk210"/>
<property name="lib" location="lib"/>
<property name="build" location="build"/>
- <property name="dist" location="dist"/>
+ <property name="dist" location="inkscape"/>
<target name="init">
<!-- Create the build directory structure used by compile -->
@@ -85,7 +85,7 @@
<exclude name="removeoverlap/remove_rectangle_overlap-test.h"/>
</fileset>
<flags>
- -Wall -g -O3
+ -Wall -O3
-mms-bitfields
</flags>
<defines>
@@ -106,6 +106,7 @@
-I${gtk}/lib/gdkmm-2.4/include
-I${gtk}/include/pangomm-1.4
-I${gtk}/include/atkmm-1.6
+ -I${gtk}/include/cairomm-1.0
-I${gtk}/include/sigc++-2.0
-I${gtk}/lib/sigc++-2.0/include
-I${gtk}/include/gtk-2.0
@@ -180,9 +181,10 @@
-lgc -mwindows -lws2_32 -lintl -lm
</libs>
</link>
+ <strip file="${build}/inkscape.exe"/>
</target>
- <target name="dist" depends="link"
+ <target name="dist" depends="link,i18n"
description="generate the distribution" >
<!-- Create the distribution directory -->
<copy file="${build}/inkscape.exe" todir="${dist}"/>
@@ -197,6 +199,7 @@
<copy file="${gtk}/bin/libgtkmm-2.4-1.dll" todir="${dist}"/>
<copy file="${gtk}/bin/libgdkmm-2.4-1.dll" todir="${dist}"/>
<copy file="${gtk}/bin/libpangomm-1.4-1.dll" todir="${dist}"/>
+ <copy file="${gtk}/bin/libcairomm-1.0-1.dll" todir="${dist}"/>
<copy file="${gtk}/bin/libsigc-2.0-0.dll" todir="${dist}"/>
<copy file="${gtk}/bin/freetype6.dll" todir="${dist}"/>
<copy file="${gtk}/bin/libatk-1.0-0.dll" todir="${dist}"/>
@@ -226,6 +229,7 @@
<copy file="${gtk}/bin/iconv.dll" todir="${dist}"/>
<copy file="${gtk}/bin/popt1.dll" todir="${dist}"/>
<copy file="${gtk}/bin/liblcms-1.dll" todir="${dist}"/>
+ <copy file="${gtk}/bin/intl.dll" tofile="${dist}/libintl-2.dll"/>
<!-- MSGFMT files -->
<copy todir="${dist}"> <fileset dir="${build}/po"/> </copy>