use libtool versioning of shared libs on Unix
[wxWidgets.git] / build / bakefiles / common.bkl
1 <?xml version="1.0" ?>
2 <!-- $Id$ -->
3
4 <makefile>
5
6     <requires version="0.1.7"/>
7
8     <!-- bakefile modules we need: -->
9     <using module="datafiles"/>
10
11     <!-- load python module with wxwindows helpers: -->
12     <using module="wxwin"/>
13
14     <!-- DFE: Add a platform meaning regular MacOS (not OS X) -->
15     <!-- FIXME: This will be handled in Bakefile but for now I wanted to
16          get my changes to the wx bakefiles in the tree but invisible to
17          windows toolkits and their config.xxx settings -->
18     <if cond="FORMAT=='autoconf'">
19         <option name="PLATFORM_MACOS"/>
20     </if>
21     <if cond="FORMAT!='autoconf'">
22         <set var="PLATFORM_MACOS">0</set>
23     </if>
24
25     <!-- FIXME: PalmOS is another candidate to bakefiles -->
26     <set var="PLATFORM_PALMOS">0</set>
27
28     <include file="config.bkl"/>
29
30     <include file="plugins_deps.bkl"/>
31
32
33     <!-- wxWidgets version numbers logic: -->
34     <include file="version.bkl"/>
35
36
37     <!-- ================================================================== -->
38     <!--                     Names of libraries and DLLs:                   -->
39     <!-- ================================================================== -->
40
41     <set var="PORTNAME">
42         <if cond="USE_GUI=='0'">base</if>
43         <if cond="USE_GUI=='1'">$(TOOLKIT_LOWERCASE)$(TOOLKIT_VERSION)</if>
44     </set>
45
46     <set var="WXBASEPORT">
47         <if cond="TOOLKIT=='MAC'">_carbon</if>
48     </set>
49
50     <set var="COMPILERORGCC">
51         <if cond="isdefined('COMPILER')">$(COMPILER)</if>
52         <if cond="not isdefined('COMPILER')">gcc</if>
53     </set>
54     <set var="WXCOMPILER">
55         <if cond="PLATFORM_WIN32=='1'">_$(COMPILERORGCC)</if>
56     </set>
57
58     <set var="VENDORTAG">
59         <if cond="PLATFORM_WIN32=='1' and OFFICIAL_BUILD=='1'"></if>
60         <if cond="PLATFORM_WIN32=='1' and OFFICIAL_BUILD=='0'">_$(VENDOR)</if>
61     </set>
62
63     <set var="WXDEBUGFLAG">
64         <if cond="BUILD=='debug' and DEBUG_FLAG=='default'">d</if>
65         <if cond="DEBUG_FLAG=='1'">d</if>
66     </set>
67     <set var="WXUNICODEFLAG">
68         <!-- WinCE is Unicode-only platform: -->
69         <if cond="UNICODE=='1' and FORMAT!='msevc4prj'">u</if>
70     </set>
71     <set var="WXNAMESUFFIX">
72         $(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
73     </set>
74
75     <set var="WXUNIVNAME">
76         <if cond="WXUNIV=='1'">univ</if>
77     </set>
78     <set var="WXUNIV_DEFINE">
79         <if cond="WXUNIV=='1'">__WXUNIVERSAL__</if>
80     </set>
81
82     <if cond="FORMAT=='autoconf'">
83         <set var="WXNAMEPREFIX">wx_base$(WXBASEPORT)</set>
84         <set var="WXNAMEPREFIXGUI">wx_$(PORTNAME)$(WXUNIVNAME)</set>
85         <set var="WXVERSIONTAG">-$(WX_RELEASE)</set>
86     </if>
87     <if cond="FORMAT!='autoconf'">
88         <set var="WXNAMEPREFIX">
89             wxbase$(WXBASEPORT)$(WX_RELEASE_NODOT)
90         </set>
91         <set var="WXNAMEPREFIXGUI">
92             wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)</set>
93         <set var="WXVERSIONTAG"></set>
94     </if>
95     <set var="WXDLLNAMEPREFIX">
96         <if cond="PLATFORM_WIN32=='1'">
97             wxbase$(WXBASEPORT)$(WXWIN32DLLVERSION)
98         </if>
99         <if cond="PLATFORM_WIN32=='0'">$(WXNAMEPREFIX)</if>
100     </set>
101     <set var="WXDLLNAMEPREFIXGUI">
102         <if cond="PLATFORM_WIN32=='1'">
103             wx$(PORTNAME)$(WXUNIVNAME)$(WXWIN32DLLVERSION)
104         </if>
105         <if cond="PLATFORM_WIN32=='0'">$(WXNAMEPREFIXGUI)</if>
106     </set>
107     <set var="WXDLLVERSIONTAG">
108         <if cond="PLATFORM_WIN32=='1'"></if>
109         <if cond="PLATFORM_WIN32=='0'">$(WXVERSIONTAG)</if>
110     </set>
111
112
113     <!-- =============================================================== -->
114     <!--                    Names of component libraries:                -->
115     <!-- =============================================================== -->
116
117     <set var="WXLIB_BASE">
118         <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('base')))</if>
119     </set>
120     <set var="WXLIB_NET">
121         <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('net')))</if>
122     </set>
123     <set var="WXLIB_QA">
124         <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('qa')))</if>
125     </set>
126     <set var="WXLIB_CORE">
127         <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('core')))</if>
128     </set>
129     <set var="WXLIB_ADV">
130         <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('adv')))</if>
131     </set>
132     <set var="WXLIB_MEDIA">
133         <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('media')))</if>
134     </set>
135     <set var="WXLIB_HTML">
136         <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('html')))</if>
137     </set>
138     <set var="WXLIB_XML">
139         <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('xml')))</if>
140     </set>
141     <set var="WXLIB_XRC">
142         <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('xrc')))</if>
143     </set>
144     <set var="WXLIB_ODBC">
145         <if cond="MONOLITHIC=='0' and USE_ODBC=='1'">
146             $(mk.evalExpr(wxwin.mkLibName('odbc')))
147         </if>
148     </set>
149     <set var="WXLIB_DBGRID">
150         <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('dbgrid')))</if>
151     </set>
152
153     <set var="WXLIB_MONO">
154         <if cond="MONOLITHIC=='1'">$(mk.evalExpr(wxwin.mkLibName('mono')))</if>
155     </set>
156
157
158     <!-- =============================================================== -->
159     <!--             Where to store built libraries and objects:         -->
160     <!-- =============================================================== -->
161
162     <set var="DIR_SUFFIX_CPU">
163         <if cond="FORMAT=='msevc4prj'">_$(CPU)</if>
164     </set>
165
166     <if cond="FORMAT!='autoconf'">
167         <set var="WXDLLFLAG">
168             <if cond="SHARED=='1'">dll</if>
169         </set>
170         <set var="CFG_NAME_PART">
171             $(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
172         </set>
173         <set var="OBJS" make_var="1">
174             <if cond="FORMAT!='cbuilderx'">
175                 $(COMPILER)_$(CFG_NAME_PART)$(DIR_SUFFIX_CPU)
176             </if>
177             <!-- FIXME: waiting for removal after CBX has better ../ dirs
178                  support -->
179             <if cond="FORMAT=='cbuilderx'">build_cbx_$(CFG_NAME_PART)</if>
180         </set>
181
182         <set var="BUILDDIR">$(OBJS)</set>
183     </if>
184
185     <set var="LIBTYPE_SUFFIX" make_var="1">
186         <if cond="FORMAT!='autoconf' and SHARED=='0'">lib</if>
187         <if cond="FORMAT!='autoconf' and SHARED=='1'">dll</if>
188     </set>
189
190     <set var="LIBDIRNAME" make_var="1">
191         <if cond="FORMAT=='autoconf'">$(top_builddir)lib</if>
192         <if cond="FORMAT!='autoconf'">
193             $(nativePaths(TOP_SRCDIR))lib$(DIRSEP)$(COMPILER)$(DIR_SUFFIX_CPU)_$(LIBTYPE_SUFFIX)$(CFG)
194         </if>
195     </set>
196
197     <if cond="FORMAT!='autoconf'">
198         <set var="SETUPHDIR" make_var="1">
199             $(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
200         </set>
201     </if>
202
203
204
205     <!-- =============================================================== -->
206     <!--                        Templates for libs:                      -->
207     <!-- =============================================================== -->
208
209     <set var="DEBUGINFO">
210         <if cond="BUILD=='debug' and DEBUG_INFO=='default'">on</if>
211         <if cond="DEBUG_INFO=='1'">on</if>
212         <if cond="BUILD=='release' and DEBUG_INFO=='default'">off</if>
213         <if cond="DEBUG_INFO=='0'">off</if>
214     </set>
215     <set var="DEBUGRUNTIME">
216         <if cond="DEBUG_RUNTIME_LIBS=='default' and BUILD=='debug'">on</if>
217         <if cond="DEBUG_RUNTIME_LIBS=='default' and BUILD=='release'">off</if>
218         <if cond="DEBUG_RUNTIME_LIBS=='0'">off</if>
219         <if cond="DEBUG_RUNTIME_LIBS=='1'">on</if>
220     </set>
221     <set var="OPTIMIZEFLAG">
222         <if cond="BUILD=='debug'">off</if>
223         <if cond="BUILD=='release'">speed</if>
224     </set>
225     <set var="EXCEPTIONSFLAG">
226         <if cond="USE_EXCEPTIONS=='1'">on</if>
227         <if cond="USE_EXCEPTIONS=='0'">off</if>
228     </set>
229     <set var="RTTIFLAG">
230         <if cond="USE_RTTI=='1'">on</if>
231         <if cond="USE_RTTI=='0'">off</if>
232     </set>
233     <set var="THREADSFLAG">
234         <if cond="USE_THREADS=='1'">multi</if>
235         <if cond="USE_THREADS=='0'">single</if>
236     </set>
237
238     <set var="RTTI_DEFINE">
239         <if cond="USE_RTTI=='0'">wxNO_RTTI</if>
240     </set>
241     <set var="EXCEPTIONS_DEFINE">
242         <if cond="USE_EXCEPTIONS=='0'">wxNO_EXCEPTIONS</if>
243     </set>
244     <set var="THREAD_DEFINE">
245         <if cond="USE_THREADS=='0'">wxNO_THREADS</if>
246     </set>
247
248     <set var="DEBUG_DEFINE">
249         <if cond="FORMAT!='autoconf' and BUILD=='debug' and DEBUG_FLAG=='default'">__WXDEBUG__</if>
250         <if cond="FORMAT!='autoconf' and DEBUG_FLAG=='1'">__WXDEBUG__</if>
251     </set>
252     <!-- does not cover all cases, but better than nothing -->
253     <set var="NO_VC_CRTDBG">
254         <if cond="FORMAT=='msvc' and BUILD=='debug' and DEBUG_RUNTIME_LIBS=='0'">__NO_VC_CRTDBG__</if>
255         <if cond="FORMAT=='msvc' and BUILD=='release' and DEBUG_FLAG=='1'">__NO_VC_CRTDBG__</if>
256     </set>
257     <set var="UNICODE_DEFINE">
258         <if cond="FORMAT!='autoconf' and UNICODE=='1'">_UNICODE</if>
259     </set>
260
261     <!-- fill for the specific case of the format/compiler -->
262     <set var="WIN32_WINNT">
263         <if cond="FORMAT=='dmars' or FORMAT=='dmars_smake'">_WIN32_WINNT=0x0400</if>
264     </set>
265
266     <set var="UNICOWS_LIB">
267         <if cond="MSLU=='1'">unicows</if>
268     </set>
269
270     <template id="common_settings">
271         <debug-info>$(DEBUGINFO)</debug-info>
272         <debug-runtime-libs>$(DEBUGRUNTIME)</debug-runtime-libs>
273         <optimize>$(OPTIMIZEFLAG)</optimize>
274         <threading>$(THREADSFLAG)</threading>
275         <runtime-libs>$(RUNTIME_LIBS)</runtime-libs>
276         <cxx-rtti>$(RTTIFLAG)</cxx-rtti>
277         <cxx-exceptions>$(EXCEPTIONSFLAG)</cxx-exceptions>
278         <if cond="FORMAT!='autoconf'">
279             <cppflags>$(EXTRACFLAGS)</cppflags>
280         </if>
281         <define>$(NO_VC_CRTDBG)</define>
282         <define>$(WIN32_WINNT)</define>
283     </template>
284
285     <template id="anylib">
286         <dirname>$(LIBDIRNAME)</dirname>
287         <install-to>$(LIBDIR)</install-to>
288     </template>
289
290     <template id="3rdparty_lib" template="common_settings,anylib">
291         <if cond="FORMAT=='autoconf'">
292             <libname>$(id)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)</libname>
293         </if>
294         <if cond="FORMAT!='autoconf'">
295             <libname>$(id)$(WXDEBUGFLAG)$(HOST_SUFFIX)</libname>
296         </if>
297         <!--
298         we want to install 3rd party libs system-wide only with static
299         version of wxWidgets; otherwise they are embedded in shared libs:
300         -->
301         <install-if>SHARED=='0'</install-if>
302         <pic>$(substituteFromDict(SHARED, {'0':'off', '1':'on'}))</pic>
303     </template>
304
305
306     <!-- deal with the need to copy setup.h here: -->
307
308     <set var="IS_MSVC_PRJ">$(FORMAT in ['msvc6prj','msevc4prj'])</set>
309
310     <define-tag name="msvc-headers" rules="dll,lib">
311         <if cond="IS_MSVC_PRJ">
312             <!-- FIXME: remove this once we require >=bkl-0.1.9 -->
313             <if cond="BAKEFILE_VERSION in ['0.1.7', '0.1.8']">
314                 <msvc-project-files>
315                     $(addPrefixToList('include\', wxwin.headersOnly(value)))
316                 </msvc-project-files>
317             </if>
318             <if cond="BAKEFILE_VERSION not in ['0.1.7', '0.1.8']">
319                 <msvc-project-files>
320                     $(addPrefixToList('include\\', wxwin.headersOnly(value)))
321                 </msvc-project-files>
322             </if>
323         </if>
324     </define-tag>
325
326     <define-tag name="msvc-copy-setup-h" rules="dll,lib">
327         <if cond="FORMAT=='msevc4prj'">
328             <msvc-headers>wx/msw/wince/setup.h</msvc-headers>
329             <set var="vc_setup_h">wince\setup.h</set>
330             <set var="vc_setup_h_rule">wince_setup_h</set>
331         </if>
332         <if cond="FORMAT!='msevc4prj'">
333             <msvc-headers>wx/msw/setup.h</msvc-headers>
334             <set var="vc_setup_h">setup.h</set>
335             <set var="vc_setup_h_rule">setup_h</set>
336         </if>
337         <if cond="IS_MSVC_PRJ">
338             <set var="_custom_build_files" append="1">
339                 include\wx\msw\$(vc_setup_h)
340             </set>
341             <set var="_custom_build_include_wx_msw_$(vc_setup_h_rule)">
342 Creating $(SETUPHDIR)\wx\setup.h
343 InputPath=..\include\wx\msw\$(vc_setup_h)
344
345 "$(SETUPHDIR)\wx\setup.h" : $(DOLLAR)(SOURCE) "$(DOLLAR)(INTDIR)" "$(DOLLAR)(OUTDIR)"
346 $(TAB)copy "$(DOLLAR)(InputPath)" $(SETUPHDIR)\wx\setup.h
347             </set>
348         </if>
349     </define-tag>
350
351     <template id="msvc_setup_h">
352         <msvc-copy-setup-h/>
353     </template>
354
355     <!-- =============================================================== -->
356     <!--                         3rd party libs:                         -->
357     <!-- =============================================================== -->
358
359     <!-- 3rd party libraries: -->
360     <include file="regex.bkl"/>
361     <include file="zlib.bkl"/>
362     <include file="png.bkl"/>
363     <include file="jpeg.bkl"/>
364     <include file="tiff.bkl"/>
365     <include file="odbc.bkl"/>
366     <include file="expat.bkl"/>
367
368
369     <!-- =============================================================== -->
370     <!--                  Templates for wxWidgets libs:                  -->
371     <!-- =============================================================== -->
372
373     <!-- NB: in monolithic build, even wxBase-only must be linked against
374              GUI extralibs, otherwise there would be unresolved references.
375              The variables below are defined so that all libs are used
376              in monolithic build, but not in multilib one. -->
377     <set var="EXTRALIBS_FOR_BASE">
378         <if cond="MONOLITHIC=='1'">$(EXTRALIBS) $(EXTRALIBS_GUI)</if>
379         <if cond="MONOLITHIC=='0'">$(EXTRALIBS)</if>
380     </set>
381     <set var="EXTRALIBS_FOR_GUI">
382         <if cond="MONOLITHIC=='1'"></if>
383         <if cond="MONOLITHIC=='0'">$(EXTRALIBS_GUI)</if>
384     </set>
385
386     <template id="wx" template="common_settings">
387         <set var="wxid">$(wxwin.mk_wxid(id))</set>
388         <define>__WX$(TOOLKIT)__</define>
389         <define>$(WXUNIV_DEFINE)</define>
390         <define>$(DEBUG_DEFINE)</define>
391         <define>$(EXCEPTIONS_DEFINE)</define>
392         <define>$(RTTI_DEFINE)</define>
393         <define>$(THREAD_DEFINE)</define>
394         <define>$(UNICODE_DEFINE)</define>
395         <!-- this include is added by configure, we need to put other
396              includes before it: -->
397         <include cond="FORMAT!='autoconf'">$(TOP_SRCDIR)include</include>
398         <lib-path>$(LIBDIRNAME)</lib-path>
399         <include cond="FORMAT!='autoconf'">$(SETUPHDIR)</include>
400         <warnings>max</warnings>
401         <cppflags-watcom>
402             -wcd=549 <!-- 'sizeof' operand contains compiler generated information -->
403             -wcd=656 <!-- define this function inside its class definition (may improve code quality) -->
404             -wcd=657 <!-- define this function inside its class definition (could have improved code quality) -->
405             -wcd=667 <!-- 'va_start' macro will not work without an argument before '...' -->
406         </cppflags-watcom>
407         <cxxflags-mingw>
408             -Wno-ctor-dtor-privacy <!-- only defines a private destructor and has no friends -->
409         </cxxflags-mingw>
410     </template>
411
412     <!-- for both GUI and wxBase libs/samples: -->
413     <template id="wx_append_base_nomono">
414         <!-- link against builtin 3rd party libs, if needed: -->
415         <sys-lib>$(LIB_TIFF)</sys-lib>
416         <sys-lib>$(LIB_JPEG)</sys-lib>
417         <sys-lib>$(LIB_PNG)</sys-lib>
418         <sys-lib>$(LIB_ZLIB)</sys-lib>
419         <sys-lib>$(LIB_ODBC)</sys-lib>
420         <sys-lib>$(LIB_REGEX)</sys-lib>
421         <sys-lib>$(LIB_EXPAT)</sys-lib>
422
423         <ldlibs>$(EXTRALIBS_FOR_BASE)</ldlibs>
424
425         <!-- system libraries on windows: -->
426         <if cond="FORMAT!='autoconf'">
427             <sys-lib>$(UNICOWS_LIB)</sys-lib>
428             <if cond="FORMAT=='borland'">
429                 <sys-lib>ole2w32</sys-lib>
430             </if>
431             <if cond="FORMAT=='msevc4prj'">
432                 <sys-lib>ole32</sys-lib>
433                 <sys-lib>oleaut32</sys-lib>
434                 <sys-lib>uuid</sys-lib>
435                 <sys-lib>commctrl</sys-lib>
436                 <sys-lib>winsock</sys-lib>
437                 <sys-lib>wininet</sys-lib>
438             </if>
439             <if cond="FORMAT!='borland' and FORMAT!='msevc4prj'">
440                 <sys-lib>kernel32</sys-lib>
441                 <sys-lib>user32</sys-lib>
442                 <sys-lib>gdi32</sys-lib>
443                 <sys-lib>comdlg32</sys-lib>
444                 <sys-lib>winspool</sys-lib>
445                 <sys-lib>winmm</sys-lib>
446                 <sys-lib>shell32</sys-lib>
447                 <sys-lib>comctl32</sys-lib>
448                 <sys-lib>ole32</sys-lib>
449                 <sys-lib>oleaut32</sys-lib>
450                 <sys-lib>uuid</sys-lib>
451                 <sys-lib>rpcrt4</sys-lib>
452                 <sys-lib>advapi32</sys-lib>
453                 <sys-lib>wsock32</sys-lib>
454             </if>
455             <if cond="FORMAT=='msvc' or FORMAT=='msvc6prj' or FORMAT=='borland'">
456                 <sys-lib>oleacc</sys-lib>
457             </if>
458             <if cond="FORMAT!='msevc4prj'">
459                 <sys-lib>odbc32</sys-lib>
460             </if>
461         </if>
462     </template>
463
464
465     <!-- for GUI libs/samples: -->
466     <template id="wx_append_nomono" template="wx_append_base_nomono">
467         <ldlibs>$(EXTRALIBS_FOR_GUI)</ldlibs>
468     </template>
469
470
471     <template id="wx_append_base" template_append="wx_append_base_nomono">
472         <!-- Always link against the wxWin library in monolithic build: -->
473         <sys-lib>$(WXLIB_MONO)</sys-lib>
474     </template>
475     <template id="wx_append" template_append="wx_append_nomono">
476         <!-- Always link against the wxWin library in monolithic build: -->
477         <sys-lib>$(WXLIB_MONO)</sys-lib>
478     </template>
479
480
481     <set var="WX_DISABLE_PRECOMP_HEADERS" overwrite="0">0</set>
482
483     <template id="wx_lib_b" template="wx,anylib">
484         <set var="WXLIBNAME">$(wxwin.mkLibName(wxid))</set>
485         <libname>$(WXLIBNAME)</libname>
486
487         <if cond="WX_DISABLE_PRECOMP_HEADERS=='0'">
488             <if cond="FORMAT!='autoconf' and TOOLKIT in ['MSW','WINCE']">
489                 <sources>$(WXTOPDIR)src/msw/dummy.cpp</sources>
490                 <precomp-headers-gen>
491                     $(WXTOPDIR)src/msw/dummy.cpp
492                 </precomp-headers-gen>
493             </if>
494             <precomp-headers-location>$(WXTOPDIR)include</precomp-headers-location>
495             <precomp-headers-header>wx/wxprec.h</precomp-headers-header>
496             <precomp-headers>on</precomp-headers>
497             <precomp-headers-file>wxprec_$(id)</precomp-headers-file>
498             <precomp-headers-exclude>
499                 src/common/extended.c
500             </precomp-headers-exclude>
501         </if>
502
503         <if cond="IS_MSVC_PRJ=='1' and BUILDING_LIB=='1'">
504             <msvc-file-group>Common Sources:src/common/*</msvc-file-group>
505             <msvc-file-group>MSW Sources:src/msw/*</msvc-file-group>
506             <msvc-file-group>Generic Sources:src/generic/*</msvc-file-group>
507             <msvc-file-group>wxUniv Sources:src/univ/*</msvc-file-group>
508             <msvc-file-group>wxHTML Sources:src/html/*</msvc-file-group>
509             <msvc-file-group>Setup Headers:*/setup.h</msvc-file-group>
510             <msvc-file-group>MSW Headers:*wx/msw/*.h</msvc-file-group>
511             <msvc-file-group>Generic Headers:*wx/generic/*.h</msvc-file-group>
512             <msvc-file-group>wxUniv Headers:*wx/univ/*.h</msvc-file-group>
513             <msvc-file-group>wxHTML Headers:*wx/html/*.h</msvc-file-group>
514             <msvc-file-group>Common Headers:*wx/*.h</msvc-file-group>
515         </if>
516     </template>
517
518     <template id="wx_dll_b" template="wx_lib_b">
519         <set var="WXDLLNAME">$(wxwin.mkDllName(wxid))</set>
520         <dllname>$(WXDLLNAME)</dllname>
521         <version>$(WX_VERSION)</version>
522         <so_version>$(WXSOVERSION)</so_version>
523     
524         <!-- FIXME: until libtool scheme is implemented in bakefile -->
525         <ldflags cond="FORMAT=='autoconf'">$(WXMACVERSION_CMD)</ldflags>
526
527         <!-- version info resources: -->
528         <if cond="FORMAT not in ['rpmspec','wx24dsp']"> <!-- FIXME: fix for bkl-0.1.7 only, remove the cond later -->
529             <res-define>WXDLLNAME=$(WXDLLNAME)</res-define>
530             <res-include cond="FORMAT=='autoconf'">
531                 $(TOP_SRCDIR)include
532             </res-include>
533         </if>
534         <win32-res>$(WXTOPDIR)src/msw/version.rc</win32-res>
535     </template>
536
537     <template id="wx_3rdparty_dependencies_gui" cond="USE_GUI=='1'">
538         <depends>wxtiff</depends>
539         <depends>wxjpeg</depends>
540         <depends>wxpng</depends>
541     </template>
542
543     <template id="wx_3rdparty_dependencies"
544               template="wx_3rdparty_dependencies_gui">
545         <depends>wxexpat</depends>
546         <depends>wxzlib</depends>
547         <depends cond="FORMAT=='autoconf'">wxodbc</depends>
548         <depends>wxregex</depends>
549     </template>
550
551     <template id="wx_3rdparty_includes_gui" cond="USE_GUI=='1'">
552         <include>$(INC_TIFF)</include>
553         <include>$(INC_JPEG)</include>
554         <include>$(INC_PNG)</include>
555     </template>
556
557     <template id="wx_3rdparty_includes"
558               template="wx_3rdparty_includes_gui">
559         <include>$(INC_ZLIB)</include>
560         <include>$(INC_ODBC)</include>
561         <include>$(INC_REGEX)</include>
562         <include>$(INC_EXPAT)</include>
563     </template>
564
565     <template id="wx_lib"
566               template="wx_lib_b,wx_3rdparty_includes,msvc_setup_h"/>
567     <template id="wx_base_lib"
568               template="wx_lib_b,wx_3rdparty_includes,msvc_setup_h">
569         <define>wxUSE_GUI=0</define>
570     </template>
571
572     <template id="wx_dll"
573               template="wx_dll_b,wx_3rdparty_dependencies,wx_3rdparty_includes"
574               template_append="msvc_setup_h,wx_append_nomono"/>
575     <template id="wx_base_dll"
576               template="wx_dll_b,wx_3rdparty_dependencies,wx_3rdparty_includes"
577               template_append="msvc_setup_h,wx_append_base_nomono">
578         <define>wxUSE_GUI=0</define>
579     </template>
580
581     <!-- =============================================================== -->
582     <!--             Templates for building wxWidgets plugins:           -->
583     <!-- =============================================================== -->
584
585     <if cond="WX_STABLE_BRANCH=='1'">
586         <set var="PLUGIN_VERSION0">
587             <if cond="PLATFORM_UNIX=='1'">$(WX_RELEASE)</if>
588             <if cond="PLATFORM_UNIX=='0'">$(WX_RELEASE_NODOT)</if>
589         </set>
590     </if>
591     <if cond="WX_STABLE_BRANCH=='0'">
592         <set var="PLUGIN_VERSION0">
593             <if cond="PLATFORM_UNIX=='1'">$(WX_VERSION)</if>
594             <if cond="PLATFORM_UNIX=='0'">$(WX_VERSION_NODOT)</if>
595         </set>
596     </if>
597     <set var="PLUGVERDELIM">
598         <if cond="PLATFORM_UNIX=='1'">-</if>
599         <if cond="PLATFORM_UNIX=='0'"></if>
600     </set>
601     <set var="PLUGIN_VERSION">$(PLUGVERDELIM)$(PLUGIN_VERSION0)</set>
602
603     <set var="PLUGINSUFFIX">
604         <if cond="UNICODE=='0' and BUILD=='release'"></if>
605         <if cond="UNICODE=='0' and BUILD=='debug'">d</if>
606         <if cond="UNICODE=='1' and BUILD=='release'">u</if>
607         <if cond="UNICODE=='1' and BUILD=='debug'">ud</if>
608     </set>
609
610     <set var="PLUGINS_INST_DIR" make_var="1">
611         $(LIBDIR)/wx/$(PLUGIN_VERSION0)
612     </set>
613
614     <define-rule name="wx-base-plugin" extends="module">
615         <template>
616             <dllname>
617                 $(id)$(PLUGINSUFFIX)$(PLUGIN_VERSION)$(WXCOMPILER)
618             </dllname>
619             <define>WXUSINGDLL</define>
620             <define>wxUSE_GUI=0</define>
621             <install-to>$(PLUGINS_INST_DIR)</install-to>
622         </template>
623     </define-rule>
624
625     <define-rule name="wx-gui-plugin" extends="module">
626         <template template="wx">
627             <dllname>
628                 $(id)_$(PORTNAME)$(WXUNIVNAME)$(PLUGINSUFFIX)$(PLUGIN_VERSION)$(WXCOMPILER)
629             </dllname>
630             <define>WXUSINGDLL</define>
631             <install-to>$(PLUGINS_INST_DIR)</install-to>
632         </template>
633     </define-rule>
634
635     <!-- =============================================================== -->
636     <!--               Support for wxWidgets samples and contrib:        -->
637     <!-- =============================================================== -->
638
639     <!-- Link against one wxWin library. Value must be literal! -->
640     <define-tag name="wx-lib" rules="exe,dll,module">
641         <sys-lib>$(wxwin.libToLink(value))</sys-lib>
642         <ldlibs>$(wxwin.extraLdflags(value))</ldlibs>
643         <if cond="IS_MSVC_PRJ=='1' and MONOLITHIC=='0'">
644             <depends-on-dsp>$(wxwin.makeDspDependency(value))</depends-on-dsp>
645         </if>
646     </define-tag>
647
648
649     <!-- A hack to keep autoconf happy (we pass CPPFLAGS that contain
650          {top_srcdir} from configure, poor bakefile can't know that
651          and won't output top_srcdir = @top_srcdir@ line): -->
652     <set var="VARS_DONT_ELIMINATE" append="1">top_srcdir</set>
653
654
655 </makefile>