Code

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