Code

add copying of mingwm10.dll to win build
[inkscape.git] / build.xml
1 <!--
2  * Inkscape build file.
3  *
4  * See buildtool.cpp for use.
5  *
6  * Authors:
7  *   Bob Jamison
8  *   Others 
9  *
10  * Copyright (C) 2006-2008 Inkscape.org
11  *
12  *  This library is free software; you can redistribute it and/or
13  *  modify it under the terms of the GNU Lesser General Public
14  *  License as published by the Free Software Foundation; either
15  *  version 2.1 of the License, or (at your option) any later version.
16  *
17  *  This library is distributed in the hope that it will be useful,
18  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
19  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20  *  Lesser General Public License for more details.
21  *
22  *  You should have received a copy of the GNU Lesser General Public
23  *  License along with this library; if not, write to the Free Software
24  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
25 -->
29 <!--
30 ########################################################################
31 ## P R O J E C T   :   I N K S C A P E
32 ########################################################################
33 -->
34 <project name="Inkscape" default="dist-inkscape" basedir=".">
35     <description>
36         Build file for the Inkscape SVG editor.  This file
37         was written for GTK-2.10 on Win32, but it should work
38         well for other types of builds with only minor adjustments.
39         Note that the default target is 'dist'.  You can execute other
40         targets instead, by "btool {target}",  like  "btool compile", if
41         you want to save time.
42     </description>
44   <!-- set global properties for this build -->
45   <property name="version"       value="0.46+devel"/>
46   <property name="src"           location="src"/>
47   <property name="lib"           location="lib"/>
48   <property name="build"         location="build"/>
49   <property name="dist"          location="inkscape"/>
51   <!-- Use these settings for the native compiler -->  
52   <!-- -->
53   <property name="arch"          value="mingw32-"/>
54   <property name="archutil"      value=""/>
55   <property name="devlibs"       location="${env.DEVLIBS_PATH}"/>
56   <property name="mingw_bin"     location="${env.MINGW_BIN}"/>
57   <property name="cxxtest"       location="cxxtest"/>
58   <!-- -->
60   <!-- Use these settings for the cross compiler -->  
61   <!--
62   <property name="arch"          value="i686-pc-mingw32-"/>
63   <property name="archutil"      value="${arch}"/>
64   <property name="devlibs"       location="/target"/>
65   -->
67   <!-- Extra properties -->  
68   <property name="refresh"       value="false"/>
70   <!--
71     This is for package-config.  With these two settings, pkg-config
72     queries can be as simple as ${pcc.packageName} for cflags, and
73     ${pcl.packageName} for libs.  Dependencies are calculated automatically.
74   -->
75   <property name="pkg-config-path"   location="${devlibs}/lib/pkgconfig"/>
76   <property name="pkg-config-prefix" location="${devlibs}"/>
79   <!--
80   ########################################################################
81   ## T A R G E T    :    I N I T
82   ########################################################################
83   -->
84   <target name="init"
85       description=
86       "Do all preparatory tasks, like make directories and copy files">
89     <mkdir dir="${build}"/>
90     <mkdir dir="${build}/java"/>
91     <mkdir dir="${build}/java/classes"/>
92     <mkdir dir="${build}/java/lib"/>
93     <mkdir dir="${dist}"/>
94     
95     <copy file="${src}/helper/sp-marshal.h.mingw"
96           tofile="${src}/helper/sp-marshal.h"/>
97     <copy file="${src}/helper/sp-marshal.cpp.mingw"
98           tofile="${src}/helper/sp-marshal.cpp"/>
99           
100     <makefile file="inkscape_version.h">
101         #define INKSCAPE_VERSION "${version}, revision ${svn.revision}"
102     </makefile>
103     <makefile file="config.h">
104         #ifndef _CONFIG_H_
105         #define _CONFIG_H_
107         #ifndef WIN32
108         #define WIN32
109         #endif
111         /*######################################
112         ## This is for require-config.h, whose
113         ## purpose I cannot fathom.
114         ######################################*/
115         
116         #define PACKAGE_TARNAME
118         /*######################################
119         #### RESOURCE DIRECTORIES
120         ######################################*/
122         #define INKSCAPE_DATADIR       "."
123         #define PACKAGE_LOCALE_DIR     "locale"
126         /*######################################
127         #### OTHER DEFINITIONS
128         ######################################*/
130         #define GETTEXT_PACKAGE "inkscape"
132         #define PACKAGE_STRING                VERSION
134         #define HAVE_GETOPT_H                 1
135         #define HAVE_STRING_H                 1
136         #define HAVE_LIBINTL_H                1
137         #define HAVE_MALLOC_H                 1
138         #define HAVE_STDLIB_H                 1
139         #define HAVE_SYS_STAT_H               1
140         #define HAVE_INTTYPES_H               1
141         #define HAVE_OPENMP                   1
143         #define ENABLE_LCMS                   1
145         #define ENABLE_NLS                    1
146         #define HAVE_BIND_TEXTDOMAIN_CODESET  1
148         /* keep binreloc off */
149         #define BR_PTHREADS 0
150         #undef ENABLE_BINRELOC
152         /* CairoPDF options */
153         #define HAVE_CAIRO_PDF                1
154         #define PANGO_ENABLE_ENGINE           1
155         #define RENDER_WITH_PANGO_CAIRO       1
157         #define HAVE_GTK_WINDOW_FULLSCREEN    1
158         
159         /* internal interpreter */
160         #define WITH_PYTHON                   1
162         /* shared whiteboard */
163         #define WITH_INKBOARD                 1
164         #define HAVE_SSL                      1
165         
166         /* use poppler for pdf import? */
167         #define HAVE_POPPLER                  1
168         #define HAVE_POPPLER_CAIRO            1
170         /* do we want bitmap manipulation? */
171         #define WITH_IMAGE_MAGICK             1
173         /* Allow reading WordPerfect? */
174         #define WITH_LIBWPG                   1
176         /* Do we support SVG Fonts? */
177         #define ENABLE_SVG_FONTS              1
179         #endif /* _CONFIG_H_ */
180     </makefile>
181   </target>
185   <!--
186   ########################################################################
187   ## T A R G E T    :    T O U C H A B O U T
188   ########################################################################
189   -->
190   <target name="touchabout"
191       description="update the modification time of aboutbox.cpp">
192     <!-- not good <touch file="${src}/ui/dialog/aboutbox.cpp"/> -->
193     <!-- better -->
194     <delete file="${build}/obj/ui/dialog/aboutbox.o"/>
195     <delete file="inkscape_version.h"/>
196   </target>
199   <!--
200   ########################################################################
201   ## T A R G E T    :    C X X T E S T
202   ########################################################################
203   -->
204   <target name="cxxtest" depends="init"
205         description="generate test files" >
207     <!-- Generate CxxTest files -->
208     <cxxtestpart command="python ${cxxtest}/cxxtestgen.py --have-eh"
209                  out="${src}/test-src.cpp">
210         <fileset dir="${src}">
211             <include name="attributes-test.h"/>
212             <include name="color-profile-test.h"/>
213             <include name="dir-util-test.h"/>
214             <include name="extract-uri-test.h"/>
215             <include name="mod360-test.h"/>
216             <include name="round-test.h"/>
217             <include name="sp-gradient-test.h"/>
218             <include name="sp-style-elem-test.h"/>
219             <include name="syle-test.h"/>
220             <include name="test-helpers.h"/>
221             <include name="verbs-test.h"/>
222         </fileset>
223     </cxxtestpart>
224     <cxxtestpart command="python ${cxxtest}/cxxtestgen.py --have-eh"
225                  out="${src}/display/test-display.cpp">
226         <fileset dir="${src}/display">
227             <include name="bezier-utils-test.h"/>
228             <include name="curve-test.h"/>
229         </fileset>
230     </cxxtestpart>
231     <cxxtestpart command="python ${cxxtest}/cxxtestgen.py --have-eh"
232                  out="${src}/helper/test-helper.cpp">
233         <fileset dir="${src}/helper">
234             <include name="units-test.h"/>
235         </fileset>
236     </cxxtestpart>
237     <cxxtestpart command="python ${cxxtest}/cxxtestgen.py --have-eh"
238                  out="${src}/libnr/test-nr.cpp">
239         <fileset dir="${src}/libnr">
240             <include name="nr-compose-test.h"/>
241             <include name="nr-types-test.h"/>
242             <include name="nr-translate-test.h"/>
243             <include name="nr-rotate-test.h"/>
244             <include name="nr-scale-test.h"/>
245             <include name="nr-point-fns-test.h"/>
246             <include name="nr-rotate-fns-test.h"/>
247             <include name="in-svg-plane-test.h"/>
248             <include name="nr-matrix-test.h"/>
249         </fileset>
250     </cxxtestpart>
251     <cxxtestpart command="python ${cxxtest}/cxxtestgen.py --have-eh"
252                  out="${src}/svg/test-svg.cpp">
253         <fileset dir="${src}/svg">
254             <include name="css-ostringstream-test.h"/>
255             <include name="stringstream-test.h"/>
256             <include name="svg-affine-test.h"/>
257             <include name="svg-color-test.h"/>
258             <include name="svg-length-test.h"/>
259             <include name="svg-path-geom-test.h"/>
260         </fileset>
261     </cxxtestpart>
262     <cxxtestpart command="python ${cxxtest}/cxxtestgen.py --have-eh"
263                  out="${src}/util/test-util.cpp">
264         <fileset dir="${src}/util">
265             <include name="list-container-test.h"/>
266         </fileset>
267     </cxxtestpart>
268     <cxxtestpart command="python ${cxxtest}/cxxtestgen.py --have-eh"
269                  out="${src}/xml/test-xml.cpp">
270         <fileset dir="${src}/xml">
271             <include name="repr-action-test.h"/>
272             <include name="quote-test.h"/>
273         </fileset>
274     </cxxtestpart>
275     <cxxtestroot command="python ${cxxtest}/cxxtestgen.py" 
276                  out="${src}/test-main.cpp"
277                  template="${src}/selfname.tpl">
278         <fileset dir="${src}">
279             <include name="MultiPrinter.h"/>
280             <include name="PylogFormatter.h"/>
281             <include name="TRPIFormatter.h"/>
282         </fileset>
283     </cxxtestroot>
284   </target>
287   <!--
288   ########################################################################
289   ## T A R G E T    :    C O M P I L E
290   ########################################################################
291   -->
292   <target name="compile" depends="cxxtest"
293         description="compile the source to .o" >
295     <!-- Compile from source to build -->
296     <cc cc="${arch}gcc" cxx="${arch}g++"
297              destdir="${build}/obj"
298              continueOnError="true"
299              refreshCache="${refresh}">
300         <fileset dir="${src}">
301             <!-- THINGS TO EXCLUDE -->
302             <exclude name="2geom/chebyshev.cpp"/>
303             <exclude name="ast/.*"/>
304             <exclude name="bonobo/.*"/>
305             <exclude name="deptool.cpp"/>
306             <!--<exclude name="test-main.cpp"/>-->
307             <!--<exclude name="test-src.cpp"/>-->
308             <exclude name="display/test-display.cpp"/>
309             <exclude name="display/testnr.cpp"/>
310             <exclude name="display/bezier-utils-test.cpp"/>
311             <exclude name="dom/work/.*"/>
312             <exclude name="dom/odf/SvgOdg.cpp"/>
313             <exclude name="extension/api.cpp"/>
314             <exclude name="extension/dxf2svg/.*"/>
315             <exclude name="extension/implementation/plugin.cpp"/>
316             <exclude name="extension/script/bindtest.cpp"/>
317             <exclude name="extension/script/cpptest.cpp"/>
318             <exclude name="extension/plugin/.*"/>
319             <exclude name="extract-uri-test.cpp"/>
320             <exclude name="helper/units-test.cpp"/>
321             <!-- exclude name="inkview.cpp"/-->
322             <!--<exclude name="libnr/test-nr.cpp"/>-->
323             <exclude name="libnr/test-nr-main.cpp"/>
324             <exclude name="libnr/testnr.cpp"/>
325             <exclude name="libnr/in-svg-plane-test.cpp"/>
326             <exclude name="libnr/nr-matrix-test.cpp"/>
327             <exclude name="libnr/nr-point-fns-test.cpp"/>
328             <exclude name="libnr/nr-rotate-fns-test.cpp"/>
329             <exclude name="libnr/nr-rotate-test.cpp"/>
330             <exclude name="libnr/nr-scale-test.cpp"/>
331             <exclude name="libnr/nr-translate-test.cpp"/>
332             <exclude name="libnr/nr-types-test.cpp"/>
333             <exclude name="livarot/Path-test.cpp"/>
334             <exclude name="mod360-test.cpp"/>
335             <exclude name="trace/potrace/potest.cpp"/>
336             <exclude name="round-test.cpp"/>
337             <exclude name="sp-gradient-test.cpp"/>
338             <exclude name="style-test.cpp"/>
339             <exclude name="svg/ftos.cpp"/>
340             <!--<exclude name="svg/test-svg.cpp"/>-->
341             <exclude name="svg/test-svg-main.cpp"/>
342             <exclude name="svg/test-stubs.cpp"/>
343             <exclude name="utest/.*"/>
344             <exclude name="util/list-container-test.cpp"/>
345             <exclude name="widgets/test-widgets.cpp"/>
346             <exclude name="xml/quote-test.cpp"/>
347             <exclude name="xml/repr-action-test.cpp"/>
348             <exclude name="xml/test-xml.cpp"/>
349             <!--<exclude name="xml/test-xml-main.cpp"/>-->
350             <exclude name="io/streamtest.cpp"/>
351             <!--JABBER-->
352             <exclude name="pedro/pedrogui.cpp"/>
353             <exclude name="pedro/pedrogui.h"/>
354             <exclude name="pedro/work/.*"/>
355             <!--WHITEBOARD-->
356             <exclude name="ui/dialog/session-player.cpp"/>
357             <exclude name="ui/dialog/whiteboard-connect.cpp"/>
358             <exclude name="ui/dialog/whiteboard-sharewithchat.cpp"/>
359             <exclude name="ui/dialog/whiteboard-sharewithuser.cpp"/>
360             <exclude name="dialogs/whiteboard-connect-dialog.cpp"/>
361             <exclude name="dialogs/whiteboard-common-dialog.cpp"/>
362             <exclude name="dialogs/whiteboard-sharewithchat-dialog.cpp"/>
363             <exclude name="dialogs/whiteboard-sharewithuser-dialog.cpp"/>
364             <exclude name="jabber_whiteboard/node-tracker.cpp"/>
365             <exclude name="jabber_whiteboard/node-utilities.cpp"/>
366             <!--OVERLAP-->
367             <exclude name="removeoverlap/placement_SolveVPSC.cpp"/>
368             <exclude name="removeoverlap/placement_SolveVPSC.h"/>
369             <exclude name="removeoverlap/test.cpp"/>
370             <exclude name="removeoverlap/remove_rectangle_overlap-test.cpp"/>
371             <exclude name="removeoverlap/remove_rectangle_overlap-test.h"/>
372         </fileset>
373         <excludeinc dir="${src}">
374             <file name="extension/param"/>
375         </excludeinc>
376         <flags>
377             -Wall -Wformat -Werror=format-security -W -Wpointer-arith -Wcast-align -Wsign-compare -Woverloaded-virtual -Wswitch
378             -O2
379             -mms-bitfields
380             -fopenmp
381         </flags>
382         <defines>
383             -DVERSION=\"${version}\"
384             -DHAVE_CONFIG_H
385             -D_INTL_REDIRECT_INLINE
386             -DHAVE_SSL
387             -DRELAYTOOL_SSL="static const int libssl_is_present=1; static int __attribute__((unused)) libssl_symbol_is_present(char *s){ return 1; }" <!-- inkboard -->
388             -DPOPPLER_NEW_GFXFONT <!-- poppler changed the api for 0.8.3 -->
389         </defines>
390         <includes>
391             -I${devlibs}/include
392             <!-- GTK / GTKMM -->
393             ${pcc.gtkmm-2.4}
394             <!-- OTHER -->
395             -I${devlibs}/include/libxml2 
396             ${pcc.freetype2}
397             ${pcc.cairo}
398             ${pcc.poppler}
399             -I${devlibs}/include/gc
400             ${pcc.libwpg-0.1} ${pcc.libwpg-stream-0.1}
401             -I${cxxtest}
402             <!-- PERL -->
403             <!-- -Wno-comment -I${devlibs}/perl/lib/CORE -->
404             <!-- PYTHON -->
405             -I${devlibs}/python/include
406             <!-- JAVA -->
407             -I${src}/bind/javainc -I${src}/bind/javainc/win32
408         </includes>
409     </cc>
410   </target>
411   
413   <!--
414   ########################################################################
415   ## T A R G E T    :    L I B
416   ########################################################################
417   -->
418   <target name="lib" depends="compile"
419       description="create a static library">
420     <staticlib command="${archutil}ar crsv"
421            file="${build}/libinkscape.a">
422        <fileset dir="${build}/obj">
423            <exclude name="main.o"/>
424            <exclude name="winmain.o"/>
425            <exclude name="inkview.o"/>
426            <!-- CxxTest -->
427            <exclude name="test-main.o"/>
428            <exclude name="test-src.o"/>
429            <exclude name="display/test-display.o"/>
430            <exclude name="helper/test-helper.o"/>
431            <exclude name="libnr/nr-compose-reference.o"/>
432            <exclude name="libnr/test-nr.o"/>
433            <exclude name="svg/test-svg.o"/>
434            <exclude name="util/test-util.o"/>
435            <exclude name="xml/test-xml.o"/>
436        </fileset>
437     </staticlib>
438   </target>
442   <!--
443   ########################################################################
444   ## T A R G E T    :    I 1 8 N
445   ########################################################################
446   -->
447   <target name="i18n" depends="compile"
448       description="compile gettext .po files to .mo">
450     <msgfmt todir="${build}/locale" owndir="true"
451          out="LC_MESSAGES/inkscape.mo">
452        <fileset dir="po">
453        </fileset>
454     </msgfmt>
455   </target>
461   <!--
462   ########################################################################
463   ## T A R G E T    :    L I N K
464   ########################################################################
465   -->
466   <target name="link" depends="lib"
467       description="link objects and library to create executable">
469     <rc command="${archutil}windres" 
470         file="${src}/inkscape.rc"
471         out="${build}/inkres.o">
472         <flags>
473         --include-dir=${src}
474         </flags>
475     </rc>
476     <link command="${arch}g++" out="${build}/inkscape.exe"
477               strip="true" symfile="${build}/inkscape.dbg"
478               stripcommand="${archutil}strip"
479               objcopycommand="${archutil}objcopy">
480        <flags>
481            -mwindows
482            -mthreads
483        </flags>
484        <fileset dir="${build}">
485            <include name="inkres.o"/>
486            <include name="obj/main.o"/>
487            <include name="obj/winmain.o"/>
488            <include name="libinkscape.a"/>
489        </fileset>
490        <!-- WARNING: If you change these libraries, don't forget to change them for inkview and cxxtests below as well! -->
491        <libs>
492            -L${devlibs}/lib
493            ${pcl.poppler-cairo} ${pcl.poppler-glib} ${pcl.poppler} 
494            ${pcl.gtkmm-2.4}  ${pcl.pangoft2} ${pcl.gthread-2.0}
495            ${devlibs}/bin/libxml2.dll
496            ${devlibs}/bin/libxslt.dll
497            ${pcl.cairo} ${pcl.cairomm-1.0}
498            ${pcl.libwpg-0.1} ${pcl.libwpg-stream-0.1}
499            ${devlibs}/lib/iconv.lib
500            ${pcl.ImageMagick++}
501            ${pcl.fontconfig} ${pcl.freetype2}
502            -lssl -lcrypto
503            ${pcl.lcms}
504            ${pcl.gsl}
505            -lpng -ljpeg.dll -ltiff.dll -lpopt ${devlibs}/lib/zdll.lib
506            -lgc
507            -lws2_32 -lintl -lgdi32 -lcomdlg32 -lm
508            -lgomp -lpthreadGC2
509        </libs>
510     </link>
511   </target>
512   
517   <!--
518   ########################################################################
519   ## T A R G E T    :    L I N K I N K V I E W
520   ########################################################################
521   -->
522   <target name="linkinkview" depends="lib"
523         description="link objects and library to create Inkview executable">
525     <rc command="${archutil}windres" 
526         file="${src}/inkview.rc"
527         out="${build}/inkviewres.o">
528         <flags>
529         --include-dir=${src}
530         </flags>
531     </rc>
532     <link command="${arch}g++" out="${build}/inkview.exe"
533               strip="true" symfile="${build}/inkview.dbg"
534               stripcommand="${archutil}strip"
535               objcopycommand="${archutil}objcopy">
536        <flags>
537            -mwindows
538            -mthreads
539        </flags>
540        <fileset dir="${build}">
541            <include name="inkviewres.o"/>
542            <include name="obj/inkview.o"/>
543            <include name="libinkscape.a"/>
544        </fileset>
545        <libs>
546            -L${devlibs}/lib
547            ${pcl.poppler-cairo} ${pcl.poppler-glib} ${pcl.poppler} 
548            ${pcl.gtkmm-2.4}  ${pcl.pangoft2} ${pcl.gthread-2.0}
549            ${devlibs}/bin/libxml2.dll
550            ${devlibs}/bin/libxslt.dll
551            ${pcl.cairo} ${pcl.cairomm-1.0}
552            ${pcl.libwpg-0.1} ${pcl.libwpg-stream-0.1}
553            ${devlibs}/lib/iconv.lib
554            ${pcl.ImageMagick++}
555            ${pcl.fontconfig} ${pcl.freetype2}
556            -lssl -lcrypto
557            ${pcl.lcms}
558            ${pcl.gsl}
559            -lpng -ljpeg.dll -ltiff.dll -lpopt ${devlibs}/lib/zdll.lib
560            -lgc
561            -lws2_32 -lintl -lgdi32 -lcomdlg32 -lm
562            -lgomp -lpthreadGC2
563        </libs>
564     </link>
565   </target>
569   <!--
570   ########################################################################
571   ## T A R G E T    :    L I N K C X X T E S T S
572   ########################################################################
573   -->
574   <target name="linkcxxtests" depends="lib"
575       description="link objects and library to create executable">
577     <link command="${arch}g++" out="${build}/cxxtests.exe"
578               strip="true" symfile="${build}/cxxtests.dbg"
579               stripcommand="${archutil}strip"
580               objcopycommand="${archutil}objcopy">
581        <flags>
582            -mthreads
583        </flags>
584        <fileset dir="${build}">
585            <include name="obj/test-main.o"/>
586            <include name="obj/test-src.o"/>
587            <include name="obj/display/test-display.o"/>
588            <include name="obj/helper/test-helper.o"/>
589            <include name="obj/libnr/nr-compose-reference.o"/>
590            <include name="obj/libnr/test-nr.o"/>
591            <include name="obj/svg/test-svg.o"/>
592            <include name="obj/util/test-util.o"/>
593            <include name="obj/xml/test-xml.o"/>
594            <include name="libinkscape.a"/>
595        </fileset>
596        <libs>
597            -L${devlibs}/lib
598            ${pcl.poppler-cairo} ${pcl.poppler-glib} ${pcl.poppler} 
599            ${pcl.gtkmm-2.4}  ${pcl.pangoft2} ${pcl.gthread-2.0}
600            ${devlibs}/bin/libxml2.dll
601            ${devlibs}/bin/libxslt.dll
602            ${pcl.cairo} ${pcl.cairomm-1.0}
603            ${pcl.libwpg-0.1} ${pcl.libwpg-stream-0.1}
604            ${devlibs}/lib/iconv.lib
605            ${pcl.ImageMagick++}
606            ${pcl.fontconfig} ${pcl.freetype2}
607            -lssl -lcrypto
608            ${pcl.lcms}
609            ${pcl.gsl}
610            -lpng -ljpeg.dll -ltiff.dll -lpopt ${devlibs}/lib/zdll.lib
611            -lgc
612            -lws2_32 -lintl -lgdi32 -lcomdlg32 -lm
613            -lgomp -lpthreadGC2
614        </libs>
615     </link>
616   </target>
619   <!--
620   ########################################################################
621   ## T A R G E T    :    D I S T B A S E
622   ########################################################################
623   -->
624   <target name="distbase" depends="i18n"
625       description="generate the distribution directory with all needed files">
627     <!-- Create the distribution directory -->
628     <copy todir="${dist}" file="AUTHORS"/>
629     <copy todir="${dist}" file="COPYING"/>
630     <copy todir="${dist}" file="COPYING.LIB"/>
631     <copy todir="${dist}" file="NEWS"/>
632     <copy todir="${dist}" file="README"/>
633     <copy todir="${dist}" file="TRANSLATORS"/>
634     <copy todir="${dist}" file="${devlibs}/bin/libatkmm-1.6-1.dll"/>
635     <copy todir="${dist}" file="${devlibs}/bin/libglibmm-2.4-1.dll"/>
636     <copy todir="${dist}" file="${devlibs}/bin/libgtkmm-2.4-1.dll"/>
637     <copy todir="${dist}" file="${devlibs}/bin/libgdkmm-2.4-1.dll"/>
638     <copy todir="${dist}" file="${devlibs}/bin/libpangomm-1.4-1.dll"/>
639     <copy todir="${dist}" file="${devlibs}/bin/libcairomm-1.0-1.dll"/>
640     <copy todir="${dist}" file="${devlibs}/bin/libsigc-2.0-0.dll"/>
641     <copy todir="${dist}" file="${devlibs}/bin/freetype6.dll"/>
642     <copy todir="${dist}" file="${devlibs}/bin/libatk-1.0-0.dll"/>
643     <copy todir="${dist}" file="${devlibs}/bin/libgdk-win32-2.0-0.dll"/>
644     <copy todir="${dist}" file="${devlibs}/bin/libgdk_pixbuf-2.0-0.dll"/>
645     <copy todir="${dist}" file="${devlibs}/bin/libglib-2.0-0.dll"/>
646     <copy todir="${dist}" file="${devlibs}/bin/libgmodule-2.0-0.dll"/>
647     <copy todir="${dist}" file="${devlibs}/bin/libgobject-2.0-0.dll"/>
648     <copy todir="${dist}" file="${devlibs}/bin/libgtk-win32-2.0-0.dll"/>
649     <copy todir="${dist}" file="${devlibs}/bin/libgthread-2.0-0.dll"/>
650     <copy todir="${dist}" file="${devlibs}/bin/libgio-2.0-0.dll"/>
651     <copy todir="${dist}" file="${devlibs}/bin/libcairo-2.dll"/>
652     <copy todir="${dist}" file="${devlibs}/bin/libpoppler-3.dll"/>
653     <copy todir="${dist}" file="${devlibs}/bin/libpangocairo-1.0-0.dll"/>
654     <copy todir="${dist}" file="${devlibs}/bin/libpango-1.0-0.dll"/>
655     <copy todir="${dist}" file="${devlibs}/bin/libpangoft2-1.0-0.dll"/>
656     <copy todir="${dist}" file="${devlibs}/bin/libpangowin32-1.0-0.dll"/>
657     <copy todir="${dist}" file="${devlibs}/bin/freetype6.dll"/>
658     <copy todir="${dist}" file="${devlibs}/bin/libfontconfig-1.dll"/>
659     <copy todir="${dist}" file="${devlibs}/bin/libxml2.dll"/>
660     <copy todir="${dist}" file="${devlibs}/bin/libxslt.dll"/>
661     <copy todir="${dist}" file="${devlibs}/bin/libexpat.dll"/>
662     <!--<copy file="${devlibs}/bin/libexpat.dll" tofile="${dist}/xmlparse.dll"/>-->
663     <copy todir="${dist}" file="${devlibs}/bin/libwpg-0.1.dll"/>
664     <copy todir="${dist}" file="${devlibs}/bin/libwpg-stream-0.1.dll"/>
665     <copy todir="${dist}" file="${devlibs}/bin/libwpd-0.8.dll"/>
666     <copy todir="${dist}" file="${devlibs}/bin/libwpd-stream-0.8.dll"/>
667     <copy todir="${dist}" file="${devlibs}/bin/jpeg62.dll"/>
668     <copy todir="${dist}" file="${devlibs}/bin/libpng13.dll"/>
669     <!-- GTK changed their dep file name for PNG!   :-(  -->
670     <copy todir="${dist}" file="${devlibs}/bin/libpng12-0.dll"/>
671     <copy todir="${dist}" file="${devlibs}/bin/libtiff3.dll"/>
672     <copy todir="${dist}" file="${devlibs}/bin/msvcr70.dll"/>
673     <copy todir="${dist}" file="${devlibs}/bin/msvcr71.dll"/>
674     <copy todir="${dist}" file="${devlibs}/bin/zlib1.dll"/>
675     <copy todir="${dist}" file="${devlibs}/bin/iconv.dll"/>
676     <copy todir="${dist}" file="${devlibs}/bin/libpopt-0.dll"/>
677     <copy todir="${dist}" file="${devlibs}/bin/liblcms-1.dll"/>
678     <copy todir="${dist}" file="${devlibs}/bin/intl.dll"/>
679     <copy todir="${dist}" file="${devlibs}/bin/pthreadGC2.dll"/>
680     <copy file="${devlibs}/bin/intl.dll" tofile="${dist}/libintl-2.dll"/>
681     <!-- MINGW dll needed, I think for openmp support  -->
682     <copy todir="${dist}" file="${mingw_bin}/mingwm10.dll"/>
684     <!-- MSGFMT files -->
685     <copy todir="${dist}">
686         <fileset dir="${build}/locale">
687           <exclude name=".*\.am"/>
688         </fileset>
689     </copy>
691     <mkdir dir="${dist}/data"/>
692     <mkdir dir="${dist}/locale"/>
693     <mkdir dir="${dist}/modules"/>
694     <mkdir dir="${dist}/plugins"/>
696     <!-- GTK -->
697     <copy todir="${dist}">     <fileset dir="${devlibs}/etc"/> </copy>
698     <copy todir="${dist}/lib"> <fileset dir="${devlibs}/lib/gtk-2.0"/> </copy>
699     <copy todir="${dist}/lib"> <fileset dir="${devlibs}/lib/glib-2.0"/> </copy>
700     <copy todir="${dist}">
701         <fileset dir="share">
702           <exclude name=".*\.am"/>
703         </fileset>
704     </copy>
705     <copy todir="${dist}/share"> <fileset dir="${devlibs}/share/locale"/> </copy>
706     <copy todir="${dist}/share"> <fileset dir="${devlibs}/share/themes"/> </copy>
707     <copy todir="${dist}/share"> <fileset dir="${devlibs}/share/poppler"/> </copy>
708     <copy todir="${dist}" file="${devlibs}/bin/gdb.exe"/>
710     <!-- Necessary to run extensions on windows if it is not in the path -->
711     <copy todir="${dist}" file="${devlibs}/bin/gspawn-win32-helper.exe"/>
712     <copy todir="${dist}" file="${devlibs}/bin/gspawn-win32-helper-console.exe"/>
714     <!-- PERL -->
715     <copy todir="${dist}" file="${devlibs}/perl/bin/perl58.dll"/>
717     <!-- PYTHON -->
718     <copy todir="${dist}" file="${devlibs}/python/python25.dll"/>
719     <copy todir="${dist}/python" file="${devlibs}/python/python.exe" />
720     <copy todir="${dist}/python" file="${devlibs}/python/pythonw.exe"/>
721     <copy todir="${dist}/python"> <fileset dir="${devlibs}/python/Lib"/> </copy>
722     <copy todir="${dist}/python"> <fileset dir="${devlibs}/python/DLLs"/> </copy>
723     <copy todir="${dist}/python"> <fileset dir="${devlibs}/python/Scripts"/> </copy>
725     <!--<copy file="${devlibs}/share/themes/MS-Windows/gtk-2.0/gtkrc" todir="${dist}/etc/gtk-2.0"/>-->
726     <makefile file="${dist}/etc/gtk-2.0/gtkrc">
727     gtk-icon-sizes = "gtk-menu=16,16:gtk-small-toolbar=16,16:gtk-large-toolbar=24,24:gtk-dnd=32,32:inkscape-decoration=16,16"
728     gtk-toolbar-icon-size = small-toolbar
730     # disable images in buttons. i've only seen ugly delphi apps use this feature.
731     gtk-button-images = 0
732     
733     # disable the annoying beep in editable controls
734     gtk-error-bell = 0
736     # enable/disable images in menus. most "stock" microsoft apps don't use these, except sparingly.
737     # the office apps use them heavily, though.
738     gtk-menu-images = 1
740     # use the win32 button ordering instead of the GNOME HIG one, where applicable
741     gtk-alternative-button-order = 1
743     style "msw-default"
744     {
745       GtkWidget::interior-focus = 1
746       GtkOptionMenu::indicator-size = { 9, 5 }
747       GtkOptionMenu::indicator-spacing = { 7, 5, 2, 2 }
748       GtkSpinButton::shadow-type = in
750       # Owen and I disagree that these should be themable
751       #GtkUIManager::add-tearoffs = 0
752       #GtkComboBox::add-tearoffs = 0
754       GtkComboBox::appears-as-list = 1
755       GtkComboBox::focus-on-click = 0
757       GOComboBox::add_tearoffs = 0
759       GtkTreeView::allow-rules = 0
760       GtkTreeView::expander-size = 12
762       GtkExpander::expander-size = 12
764       GtkScrolledWindow::scrollbar_spacing = 1
766       GtkSeparatorMenuItem::horizontal-padding = 2
768       engine "wimp"
769       {
770       }
771     }
772     class "*" style "msw-default"
773     </makefile>
775   </target>
778   <!--
779   ########################################################################
780   ## T A R G E T    :    D I S T - I N K S C A P E
781   ########################################################################
782   -->
783   <target name="dist-inkscape" depends="link,distbase"
784       description="copy inkscape to the distribution directory">
786     <!-- Create the distribution directory -->
787     <copy todir="${dist}" file="${build}/inkscape.exe"/>
788     <copy todir="${dist}" file="${build}/inkscape.dbg"/>
789   </target>
792   <!--
793   ########################################################################
794   ## T A R G E T    :    D I S T - I N K V I E W
795   ########################################################################
796   -->
797   <target name="dist-inkview" depends="linkinkview,distbase"
798       description="copy inkview to the distribution directory">
800     <!-- Create the distribution directory -->
801     <copy todir="${dist}" file="${build}/inkview.exe"/>
802     <copy todir="${dist}" file="${build}/inkview.dbg"/>
803   </target>
806   <!--
807   ########################################################################
808   ## T A R G E T    :    C H E C K
809   ########################################################################
810   -->
811   <target name="check" depends="linkcxxtests,distbase"
812       description="perform unit tests">
813     <cxxtestrun command="${build}/cxxtests" workingdir="${dist}" />
814   </target>
817   <!--
818   ########################################################################
819   ## T A R G E T    :    JAVAC
820   ########################################################################
821   -->
822   <target name="javac" depends="init"
823       description="compile java binding classes">
824     <javac srcdir="${src}/bind/java" destdir="${build}/java/classes"/>
825   </target>
828   <!--
829   ########################################################################
830   ## T A R G E T    :    JAR
831   ########################################################################
832   -->
833   <target name="jar" depends="javac"
834       description="pack java classes and resources into a jar file">
835     <copy todir="${build}/java/classes"> <fileset dir="${devlibs}/bind/data"/> </copy>
836     <jar basedir="${build}/java/classes" destfile="${build}/java/lib/inkscape.jar"/>
837   </target>
839   <!--
840   ########################################################################
841   ## T A R G E T    :    BINDDIST
842   ########################################################################
843   -->
844   <target name="binddist" depends="jar"
845       description="pack java classes and resources into a jar file">
846     <copy todir="${dist}/share/bind"> <fileset dir="${devlibs}/bind/java"/> </copy>
847     <copy todir="${dist}/share/bind/java"> <fileset dir="${build}/java/lib"/> </copy>
849   </target>
851   <!--
852   ########################################################################
853   ## T A R G E T    :    BINDCLEAN
854   ########################################################################
855   -->
856   <target name="bindclean" depends=""
857       description="clean up java binding classes">
858         <delete dir="${build}/java"/>
859   </target>
864   <!--
865   ########################################################################
866   ## T A R G E T    :    D I S T - A L L
867   ########################################################################
868   -->
869   <target name="dist-all" depends="dist-inkscape,dist-inkview"
870         description="generate the distribution, along with inkview" >
871   </target>
876   <!--
877   ########################################################################
878   ## T A R G E T    :    D I S T - A L L - C H E C K
879   ########################################################################
880   -->
881   <target name="dist-all-check" depends="dist-all,check"
882         description="generate the distribution, along with inkview and run cxxtests" >
883   </target>
889   <!--
890   ########################################################################
891   ## T A R G E T    :    C L E A N
892   ########################################################################
893   -->
894   <target name="clean" depends="bindclean"
895         description="clean up.  deleting build and distro dirs" >
897     <delete dir="${build}"/>
898     <delete dir="${dist}"/>
899     <delete file="build.dep"/>
900     <delete file="config.h"/>
901     <delete file="inkscape_version.h"/>
903     <delete file="${src}/test-main.cpp"/>
904     <delete file="${src}/test-src.cpp"/>
905     <delete file="${src}/display/test-display.cpp"/>
906     <delete file="${src}/helper/test-helper.cpp"/>
907     <delete file="${src}/libnr/test-nr.cpp"/>
908     <delete file="${src}/svg/test-svg.cpp"/>
909     <delete file="${src}/util/test-util.cpp"/>
910     <delete file="${src}/xml/test-xml.cpp"/>
912   </target>
916 </project>
917 <!--
918 ########################################################################
919 ## E N D
920 ########################################################################
921 -->