Code

vertical flip on RENDER_WITH_PANGO_CAIRO text output
[inkscape.git] / build-sjlj.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-2007 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 -->
31 <!--
32 ########################################################################
33 ## P R O J E C T   :   I N K S C A P E
34 ########################################################################
35 -->
36 <project name="Inkscape" default="dist" basedir=".">
37     <description>
38         Build file for the Inkscape SVG editor.  This file
39         is for older compilers and libs with the "setjump/longjump"
40         (sjlj) form of event handling.
41     </description>
43   <!-- set global properties for this build -->
44   <property name="version"     value="0.45+devel"/>
45   <property name="arch"        value="i686-pc-mingw32-"/>
46   <!--<property name="archutil"    value="${arch}"/>-->
47   <property name="archutil"    value=""/>
48   <property name="src"         location="src"/>
49   <property name="gtk"         location="c:/gtk210"/>
50   <property name="lib"         location="lib"/>
51   <property name="build"       location="build"/>
52   <property name="dist"        location="inkscape"/>
56   <!--
57   ########################################################################
58   ## T A R G E T    :    I N I T
59   ########################################################################
60   -->
61   <target name="init"
62       description=
63       "Do all preparatory tasks, like make directories and copy files">
66     <!-- example of the <pkg-config> task
67       query can be cflags, libs, or both
68       prefix overrides the value of prefix="" in the file
69       the result of this entry can be later used as ${gtkmm}
70     -->
71     <!--
72     <pkg-config name="gtkmm-2.4" path="${gtk}/lib/pkgconfig"
73                 query="both" property="gtkmm" prefix="${gtk}"/>
74     -->
76     <mkdir dir="${build}"/>
77     <mkdir dir="${dist}"/>
78     <copy file="${src}/helper/sp-marshal.h.mingw"
79           tofile="${src}/helper/sp-marshal.h"/>
80     <copy file="${src}/helper/sp-marshal.cpp.mingw"
81           tofile="${src}/helper/sp-marshal.cpp"/>
82     <makefile file="inkscape_version.h">
83         #define INKSCAPE_VERSION "${version}+devel"
84     </makefile>
85     <makefile file="config.h">
86         #ifndef _CONFIG_H_
87         #define _CONFIG_H_
89         #ifndef WIN32
90         #define WIN32
91         #endif
93         /*######################################
94         ## This is for require-config.h, whose
95         ## purpose I cannot fathom.
96         ######################################*/
97         
98         #define PACKAGE_TARNAME
100         /*######################################
101         #### RESOURCE DIRECTORIES
102         ######################################*/
104         #define INKSCAPE_DATADIR       "."
105         #define PACKAGE_LOCALE_DIR     "locale"
108         /*######################################
109         #### OTHER DEFINITIONS
110         ######################################*/
112         #define GETTEXT_PACKAGE "inkscape"
114         #define PACKAGE_STRING                VERSION
116         #define HAVE_GETOPT_H                 1
117         #define HAVE_STRING_H                 1
118         #define HAVE_LIBINTL_H                1
119         #define HAVE_MALLOC_H                 1
120         #define HAVE_STDLIB_H                 1
121         #define HAVE_SYS_STAT_H               1
122         #define HAVE_INTTYPES_H               1
124         #define ENABLE_LCMS                   1
126         #define ENABLE_NLS                    1
127         #define HAVE_BIND_TEXTDOMAIN_CODESET  1
129         /* keep binreloc off */
130         #define BR_PTHREADS 0
131         #undef ENABLE_BINRELOC
133         /* CairoPDF options */
134         #define HAVE_CAIRO_PDF                1
135         #define PANGO_ENABLE_ENGINE           1
136         #define RENDER_WITH_PANGO_CAIRO       1
138         #define HAVE_GTK_WINDOW_FULLSCREEN    1
139         
140         /* internal interpreter */
141         #define WITH_PYTHON                   1
143         /* shared whiteboard */
144         #define WITH_INKBOARD                 1
145         #define HAVE_SSL                      1
146         
147         /* use poppler for pdf import? */
148         #define HAVE_POPPLER                  1
149         #define HAVE_POPPLER_CAIRO            1
151         /* do we want bitmap manipulation? */
152         #define WITH_IMAGE_MAGICK             1
154         #endif /* _CONFIG_H_ */
155     </makefile>
156   </target>
160   <!--
161   ########################################################################
162   ## T A R G E T    :    T O U C H A B O U T
163   ########################################################################
164   -->
165   <target name="touchabout"
166       description="update the modification time of aboutdialog.cpp">
167     <!-- not good <touch file="${src}/ui/dialog/aboutdialog.cpp"/> -->
168     <!-- better -->
169     <delete file="${build}/obj/ui/dialog/aboutdialog.o"/>
170   </target>
173   <!--
174   ########################################################################
175   ## T A R G E T    :    C O M P I L E
176   ########################################################################
177   -->
178   <target name="compile" depends="init"
179         description="compile the source to .o" >
181     <!-- Compile from source to build -->
182     <cc cc="${arch}gcc" cxx="${arch}g++"
183              destdir="${build}/obj">
184         <fileset dir="${src}">
185             <!-- THINGS TO EXCLUDE -->
186             <exclude name="2geom/chebyshev.cpp"/>
187             <exclude name="ast/.*"/>
188             <exclude name="bonobo/.*"/>
189             <exclude name="deptool.cpp"/>
190             <exclude name="test-all.cpp"/>
191             <exclude name="dialogs/filedialog-win32.cpp"/>
192             <exclude name="display/testnr.cpp"/>
193             <exclude name="display/bezier-utils-test.cpp"/>
194             <exclude name="dom/jsdombind.cpp"/>
195             <exclude name="dom/work/.*"/>
196             <exclude name="dom/odf/SvgOdg.cpp"/>
197             <exclude name="extension/api.cpp"/>
198             <exclude name="extension/dxf2svg/.*"/>
199             <exclude name="extension/implementation/plugin.cpp"/>
200             <exclude name="extension/script/bindtest.cpp"/>
201             <exclude name="extension/script/cpptest.cpp"/>
202             <exclude name="extension/plugin/.*"/>
203             <exclude name="extract-uri-test.cpp"/>
204             <exclude name="helper/units-test.cpp"/>
205             <!-- exclude name="inkview.cpp"/-->
206             <exclude name="libnr/test-nr.cpp"/>
207             <exclude name="libnr/test-nr-main.cpp"/>
208             <exclude name="libnr/testnr.cpp"/>
209             <exclude name="libnr/in-svg-plane-test.cpp"/>
210             <exclude name="libnr/nr-compose-reference.cpp"/>
211             <exclude name="libnr/nr-compose-test.cpp"/>
212             <exclude name="libnr/nr-matrix-test.cpp"/>
213             <exclude name="libnr/nr-point-fns-test.cpp"/>
214             <exclude name="libnr/nr-rotate-fns-test.cpp"/>
215             <exclude name="libnr/nr-rotate-test.cpp"/>
216             <exclude name="libnr/nr-scale-test.cpp"/>
217             <exclude name="libnr/nr-translate-test.cpp"/>
218             <exclude name="libnr/nr-types-test.cpp"/>
219             <exclude name="livarot/Path-test.cpp"/>
220             <exclude name="mod360-test.cpp"/>
221             <exclude name="trace/potrace/potest.cpp"/>
222             <exclude name="round-test.cpp"/>
223             <exclude name="sp-gradient-test.cpp"/>
224             <exclude name="svg/ftos.cpp"/>
225             <exclude name="svg/test-svg.cpp"/>
226             <exclude name="svg/test-svg-main.cpp"/>
227             <exclude name="utest/.*"/>
228             <exclude name="widgets/test-widgets.cpp"/>
229             <exclude name="xml/quote-test.cpp"/>
230             <exclude name="xml/repr-action-test.cpp"/>
231             <exclude name="xml/test-xml.cpp"/>
232             <exclude name="xml/test-xml-main.cpp"/>
233             <exclude name="io/streamtest.cpp"/>
234             <!--JABBER-->
235             <exclude name="pedro/pedrogui.cpp"/>
236             <exclude name="pedro/pedrogui.h"/>
237             <exclude name="pedro/work/.*"/>
238             <!--WHITEBOARD-->
239             <exclude name="ui/dialog/session-player.cpp"/>
240             <exclude name="ui/dialog/whiteboard-connect.cpp"/>
241             <exclude name="ui/dialog/whiteboard-sharewithchat.cpp"/>
242             <exclude name="ui/dialog/whiteboard-sharewithuser.cpp"/>
243             <exclude name="dialogs/whiteboard-connect-dialog.cpp"/>
244             <exclude name="dialogs/whiteboard-common-dialog.cpp"/>
245             <exclude name="dialogs/whiteboard-sharewithchat-dialog.cpp"/>
246             <exclude name="dialogs/whiteboard-sharewithuser-dialog.cpp"/>
247             <exclude name="jabber_whiteboard/node-tracker.cpp"/>
248             <exclude name="jabber_whiteboard/node-utilities.cpp"/>
249             <!--WHITEBOARD-->
250             <exclude name="removeoverlap/placement_SolveVPSC.cpp"/>
251             <exclude name="removeoverlap/placement_SolveVPSC.h"/>
252             <exclude name="removeoverlap/test.cpp"/>
253             <exclude name="removeoverlap/remove_rectangle_overlap-test.cpp"/>
254             <exclude name="removeoverlap/remove_rectangle_overlap-test.h"/>
255         </fileset>
256         <flags>
257             -Wall -O3
258             -mms-bitfields
259         </flags>
260         <defines>
261             -DVERSION=\"${version}\"
262             -DHAVE_CONFIG_H
263             -DXP_WIN <!-- for JS -->
264             -D_INTL_REDIRECT_INLINE
265             -DHAVE_SSL
266             -DRELAYTOOL_SSL="static const int libssl_is_present=1; static int __attribute__((unused)) libssl_symbol_is_present(char *s){ return 1; }" <!-- inkboard -->
267         </defines>
268         <includes>
269             -I${gtk}/include
270             <!-- GTK / GTKMM -->
271             -I${gtk}/include/glibmm-2.4
272             -I${gtk}/lib/glibmm-2.4/include
273             -I${gtk}/include/gtkmm-2.4
274             -I${gtk}/lib/gtkmm-2.4/include
275             -I${gtk}/include/gdkmm-2.4
276             -I${gtk}/lib/gdkmm-2.4/include
277             -I${gtk}/include/pangomm-1.4
278             -I${gtk}/include/atkmm-1.6
279             -I${gtk}/include/cairomm-1.0
280             -I${gtk}/include/sigc++-2.0
281             -I${gtk}/lib/sigc++-2.0/include
282             -I${gtk}/include/gtk-2.0
283             -I${gtk}/lib/gtk-2.0/include
284             -I${gtk}/include/atk-1.0
285             -I${gtk}/include/pango-1.0
286             -I${gtk}/include/glib-2.0
287             -I${gtk}/lib/glib-2.0/include
288             <!-- OTHER -->
289             -I${gtk}/include/libxml2 
290             -I${gtk}/include/freetype2
291             -I${gtk}/include/cairo
292             -I${gtk}/include/poppler
293             <!-- PERL -->
294             -Wno-comment -I${gtk}/perl/lib/CORE
295             <!-- PYTHON -->
296             -I${gtk}/python/include
297         </includes>
298     </cc>
299   </target>
300   
302   <!--
303   ########################################################################
304   ## T A R G E T    :    L I B
305   ########################################################################
306   -->
307   <target name="lib" depends="compile"
308       description="create a static library">
309     <staticlib command="${archutil}ar crsv"
310            file="${build}/libinkscape.a">
311        <fileset dir="${build}/obj">
312            <exclude name="main.o"/>
313            <exclude name="winmain.o"/>
314            <exclude name="inkview.o"/>
315        </fileset>
316     </staticlib>
317   </target>
321   <!--
322   ########################################################################
323   ## T A R G E T    :    I 1 8 N
324   ########################################################################
325   -->
326   <target name="i18n" depends="compile"
327       description="compile gettext .po files to .mo">
329     <msgfmt todir="${build}/locale" owndir="true"
330          out="LC_MESSAGES/inkscape.mo">
331        <fileset dir="po">
332        </fileset>
333     </msgfmt>
334   </target>
340   <!--
341   ########################################################################
342   ## T A R G E T    :    L I N K
343   ########################################################################
344   -->
345   <target name="link" depends="lib"
346       description="link objects and library to create executable">
348     <rc command="${archutil}windres" 
349         file="${src}/inkscape.rc"
350         out="${build}/inkres.o">
351         <flags>
352         --include-dir=${src}
353         </flags>
354     </rc>
355     <link command="${arch}g++" out="${build}/inkscape.exe"
356               strip="true" symfile="${build}/inkscape.dbg"
357               stripcommand="${archutil}strip"
358               objcopycommand="${archutil}objcopy"
359               >
360        <flags>
361            -mwindows
362        </flags>
363        <fileset dir="${build}">
364            <include name="inkres.o"/>
365            <include name="obj/main.o"/>
366            <include name="obj/winmain.o"/>
367            <include name="libinkscape.a"/>
368        </fileset>
369        <libs>
370            -L${gtk}/lib
371            -lgtkmm-2.4 -lgdkmm-2.4 -lglibmm-2.4
372            -latkmm-1.6 -lpangomm-1.4 -lsigc-2.0
373            -lgtk-win32-2.0 -lgdk-win32-2.0 -latk-1.0
374            -lgdk_pixbuf-2.0
375            -lpangocairo-1.0 -lpangoft2-1.0 -lpangowin32-1.0 -lpango-1.0
376            -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lglib-2.0
377            <!-- PERL -->
378            -L${gtk}/perl/lib/CORE -lperl58
379            <!-- PYTHON -->
380            -L${gtk}/python/libs -lpython25
381            ${gtk}/bin/libxml2.dll
382            ${gtk}/bin/libxslt.dll
383            -lpoppler-cairo -lpoppler
384            -lcairo.dll
385            ${gtk}/lib/iconv.lib
386            -lfreetype.dll -lfontconfig.dll
387            -lssl -lcrypto
388            -lMagick++ -lWand -lMagick
389            -llcms.dll
390            -lpng -ljpeg.dll -ltiff.dll -lpopt ${gtk}/lib/zdll.lib
391            -lgc -lws2_32 -lintl -lgdi32 -lcomdlg32 -lm
392            <!-- 2geom -->
393            <!-- -l2geom -->
394        </libs>
395     </link>
396   </target>
397   
402   <!--
403   ########################################################################
404   ## T A R G E T    :    L I N K I N K V I E W
405   ########################################################################
406   -->
407   <target name="linkinkview" depends="lib"
408         description="link objects and library to create Inkview executable">
410     <rc command="${archutil}windres" 
411         file="${src}/inkview.rc"
412         out="${build}/inkviewres.o">
413         <flags>
414         --include-dir=${src}
415         </flags>
416     </rc>
417     <link command="${arch}g++" out="${build}/inkview.exe"
418               strip="true" symfile="${build}/inkview.dbg"
419               stripcommand="${archutil}strip"
420               objcopycommand="${archutil}objcopy"
421               >
422        <flags>
423        </flags>
424        <fileset dir="${build}">
425            <include name="inkviewres.o"/>
426            <include name="obj/inkview.o"/>
427            <include name="libinkscape.a"/>
428        </fileset>
429        <libs>
430            -L${gtk}/lib
431            -lgtkmm-2.4 -lgdkmm-2.4 -lglibmm-2.4
432            -latkmm-1.6 -lpangomm-1.4 -lsigc-2.0
433            -lgtk-win32-2.0 -lgdk-win32-2.0 -latk-1.0
434            -lgdk_pixbuf-2.0
435            -lpangocairo-1.0 -lpangoft2-1.0 -lpangowin32-1.0 -lpango-1.0
436            -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lglib-2.0 -lcairo
437            <!-- PERL -->
438            -L${gtk}/perl/lib/CORE -lperl58
439            <!-- PYTHON -->
440            -L${gtk}/python/libs -lpython24
441            ${gtk}/bin/libxml2.dll
442            ${gtk}/bin/libxslt.dll
443            ${gtk}/lib/iconv.lib
444            -lfreetype.dll -lfontconfig.dll
445            -llcms.dll
446            -lssl -lcrypto
447            -lpng -lpopt ${gtk}/lib/zdll.lib
448            -lgc -mwindows -lws2_32 -lintl -lm
449        </libs>
450     </link>
451   </target>
455   <!--
456   ########################################################################
457   ## T A R G E T    :    D I S T
458   ########################################################################
459   -->
460   <target name="dist" depends="link,i18n"
461       description="generate the distribution directory with all needed files">
463     <!-- Create the distribution directory -->
464     <copy file="${build}/inkscape.exe" todir="${dist}"/>
465     <copy file="${build}/inkscape.dbg" todir="${dist}"/>
466     <copy file="AUTHORS" todir="${dist}"/>
467     <copy file="COPYING" todir="${dist}"/>
468     <copy file="COPYING.LIB" todir="${dist}"/>
469     <copy file="NEWS" todir="${dist}"/>
470     <copy file="README" todir="${dist}"/>
471     <copy file="TRANSLATORS" todir="${dist}"/>
472     <copy file="${gtk}/bin/libatkmm-1.6-1.dll" todir="${dist}"/>
473     <copy file="${gtk}/bin/libglibmm-2.4-1.dll" todir="${dist}"/>
474     <copy file="${gtk}/bin/libgtkmm-2.4-1.dll" todir="${dist}"/>
475     <copy file="${gtk}/bin/libgdkmm-2.4-1.dll" todir="${dist}"/>
476     <copy file="${gtk}/bin/libpangomm-1.4-1.dll" todir="${dist}"/>
477     <copy file="${gtk}/bin/libcairomm-1.0-1.dll" todir="${dist}"/>
478     <copy file="${gtk}/bin/libsigc-2.0-0.dll" todir="${dist}"/>
479     <copy file="${gtk}/bin/freetype6.dll" todir="${dist}"/>
480     <copy file="${gtk}/bin/libatk-1.0-0.dll" todir="${dist}"/>
481     <copy file="${gtk}/bin/libgdk-win32-2.0-0.dll" todir="${dist}"/>
482     <copy file="${gtk}/bin/libgdk_pixbuf-2.0-0.dll" todir="${dist}"/>
483     <copy file="${gtk}/bin/libglib-2.0-0.dll" todir="${dist}"/>
484     <copy file="${gtk}/bin/libgmodule-2.0-0.dll" todir="${dist}"/>
485     <copy file="${gtk}/bin/libgobject-2.0-0.dll" todir="${dist}"/>
486     <copy file="${gtk}/bin/libgtk-win32-2.0-0.dll" todir="${dist}"/>
487     <copy file="${gtk}/bin/libgthread-2.0-0.dll" todir="${dist}"/>
488     <copy file="${gtk}/bin/libcairo-2.dll" todir="${dist}"/>
489     <copy file="${gtk}/bin/libpangocairo-1.0-0.dll" todir="${dist}"/>
490     <copy file="${gtk}/bin/libpango-1.0-0.dll" todir="${dist}"/>
491     <copy file="${gtk}/bin/libpangoft2-1.0-0.dll" todir="${dist}"/>
492     <copy file="${gtk}/bin/libpangowin32-1.0-0.dll" todir="${dist}"/>
493     <copy file="${gtk}/bin/freetype6.dll" todir="${dist}"/>
494     <copy file="${gtk}/bin/libfontconfig-1.dll" todir="${dist}"/>
495     <copy file="${gtk}/bin/libxml2.dll" todir="${dist}"/>
496     <copy file="${gtk}/bin/libxslt.dll" todir="${dist}"/>
497     <copy file="${gtk}/bin/xmlparse.dll" todir="${dist}"/>
498     <copy file="${gtk}/bin/xmlparse.dll" tofile="${dist}/libexpat.dll"/>
499     <copy file="${gtk}/bin/jpeg62.dll" todir="${dist}"/>
500     <copy file="${gtk}/bin/libpng13.dll" todir="${dist}"/>
501     <copy file="${gtk}/bin/libtiff3.dll" todir="${dist}"/>
502     <copy file="${gtk}/bin/msvcr70.dll" todir="${dist}"/>
503     <copy file="${gtk}/bin/msvcr71.dll" todir="${dist}"/>
504     <copy file="${gtk}/bin/zlib1.dll" todir="${dist}"/>
505     <copy file="${gtk}/bin/iconv.dll" todir="${dist}"/>
506     <copy file="${gtk}/bin/popt1.dll" todir="${dist}"/>
507     <copy file="${gtk}/bin/liblcms-1.dll" todir="${dist}"/>
508     <copy file="${gtk}/bin/intl.dll" todir="${dist}"/>
509     <copy file="${gtk}/bin/intl.dll" tofile="${dist}/libintl-2.dll"/>
511     <!-- MSGFMT files -->
512     <copy todir="${dist}">
513         <fileset dir="${build}/locale">
514           <exclude name=".*\.am"/>
515         </fileset>
516     </copy>
518     <!-- GTK -->
519     <copy todir="${dist}"> <fileset dir="${gtk}/etc"/> </copy>
520     <copy todir="${dist}/lib"> <fileset dir="${gtk}/lib/gtk-2.0"/> </copy>
521     <copy todir="${dist}/lib"> <fileset dir="${gtk}/lib/glib-2.0"/> </copy>
522     <copy todir="${dist}/lib"> <fileset dir="${gtk}/lib/locale"/> </copy>
523     <copy todir="${dist}">
524         <fileset dir="share">
525           <exclude name=".*\.am"/>
526         </fileset>
527     </copy>
528     <copy todir="${dist}/share"> <fileset dir="${gtk}/share/themes"/> </copy>
529     <mkdir dir="${dist}/data"/>
530     <mkdir dir="${dist}/locale"/>
531     <mkdir dir="${dist}/modules"/>
532     <mkdir dir="${dist}/plugins"/>
533     <copy file="${gtk}/bin/gdb.exe" todir="${dist}"/>
535     <!-- Necessary to run extensions on windows if it is not in the path -->
536     <copy file="${gtk}/bin/gspawn-win32-helper.exe" todir="${dist}"/>
537     <copy file="${gtk}/bin/gspawn-win32-helper-console.exe" todir="${dist}"/>
539     <!-- PERL -->
540     <copy file="${gtk}/perl/bin/perl58.dll" todir="${dist}"/>
542     <!-- PYTHON -->
543     <copy file="${gtk}/python/python25.dll" todir="${dist}"/>
544     <copy file="${gtk}/python/python.exe" todir="${dist}/python"/>
545     <copy todir="${dist}/python"> <fileset dir="${gtk}/python/Lib"/> </copy>
546     <copy todir="${dist}/python"> <fileset dir="${gtk}/python/DLLs"/> </copy>
547     <copy todir="${dist}/python"> <fileset dir="${gtk}/python/Scripts"/> </copy>
549     <!--<copy file="${gtk}/share/themes/MS-Windows/gtk-2.0/gtkrc" todir="${dist}/etc/gtk-2.0"/>-->
550     <makefile file="${dist}/etc/gtk-2.0/gtkrc">
551     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"
552     gtk-toolbar-icon-size = small-toolbar
554     # disable images in buttons. i've only seen ugly delphi apps use this feature.
555     gtk-button-images = 0
557     # enable/disable images in menus. most "stock" microsoft apps don't use these, except sparingly.
558     # the office apps use them heavily, though.
559     gtk-menu-images = 1
561     # use the win32 button ordering instead of the GNOME HIG one, where applicable
562     gtk-alternative-button-order = 1
564     style "msw-default"
565     {
566       GtkWidget::interior-focus = 1
567       GtkOptionMenu::indicator-size = { 9, 5 }
568       GtkOptionMenu::indicator-spacing = { 7, 5, 2, 2 }
569       GtkSpinButton::shadow-type = in
571       # Owen and I disagree that these should be themable
572       #GtkUIManager::add-tearoffs = 0
573       #GtkComboBox::add-tearoffs = 0
575       GtkComboBox::appears-as-list = 1
576       GtkComboBox::focus-on-click = 0
578       GOComboBox::add_tearoffs = 0
580       GtkTreeView::allow-rules = 0
581       GtkTreeView::expander-size = 12
583       GtkExpander::expander-size = 12
585       GtkScrolledWindow::scrollbar_spacing = 1
587       GtkSeparatorMenuItem::horizontal-padding = 2
589       engine "wimp"
590       {
591       }
592     }
593     class "*" style "msw-default"
594     </makefile>
596   </target>
601   <!--
602   ########################################################################
603   ## T A R G E T    :    D I S T - A L L
604   ########################################################################
605   -->
606   <target name="dist-all" depends="dist,linkinkview"
607         description="generate the distribution, along with inkview" >
609     <copy file="${build}/inkview.exe" todir="${dist}"/>
610     <copy file="${build}/inkview.dbg" todir="${dist}"/>
611   </target>
616   <!--
617   ########################################################################
618   ## T A R G E T    :    C L E A N
619   ########################################################################
620   -->
621   <target name="clean"
622         description="clean up.  deleting build and distro dirs" >
624     <delete dir="${build}"/>
625     <delete dir="${dist}"/>
626     <delete file="build.dep"/>
627     <delete file="config.h"/>
629   </target>
633 </project>
634 <!--
635 ########################################################################
636 ## E N D
637 ########################################################################
638 -->