]> git.saurik.com Git - wxWidgets.git/blob - build/bakefiles/common.bkl
implemented wxMemoryFSHandler::FindFirst/Next()
[wxWidgets.git] / build / bakefiles / common.bkl
1 <?xml version="1.0" ?>
2 <!-- $Id$ -->
3
4 <makefile>
5
6 <requires version="0.2.3"/>
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
29 <include file="config.bkl"/>
30
31 <include file="plugins_deps.bkl"/>
32
33
34 <!-- wxWidgets version numbers logic: -->
35 <include file="version.bkl"/>
36
37
38 <!-- ================================================================== -->
39 <!-- Names of libraries and DLLs: -->
40 <!-- ================================================================== -->
41
42 <set var="PORTNAME">
43 <if cond="USE_GUI=='0'">base</if>
44 <if cond="USE_GUI=='1'">$(TOOLKIT_LOWERCASE)$(TOOLKIT_VERSION)</if>
45 </set>
46
47 <set var="WXBASEPORT">
48 <if cond="TOOLKIT=='MAC'">_carbon</if>
49 </set>
50
51 <set var="COMPILERORGCC">
52 <if cond="isdefined('COMPILER')">$(COMPILER)</if>
53 <if cond="not isdefined('COMPILER')">gcc</if>
54 </set>
55 <set var="WXCOMPILER">
56 <if cond="PLATFORM_WIN32=='1'">_$(COMPILERORGCC)</if>
57 </set>
58
59 <set var="VENDORTAG">
60 <if cond="PLATFORM_WIN32=='1' and OFFICIAL_BUILD=='1'"></if>
61 <if cond="PLATFORM_WIN32=='1' and OFFICIAL_BUILD=='0'">_$(VENDOR)</if>
62 </set>
63
64 <set var="WXDEBUGFLAG">
65 <if cond="BUILD=='debug' and DEBUG_FLAG=='default'">d</if>
66 <if cond="DEBUG_FLAG=='1'">d</if>
67 </set>
68 <set var="WXUNICODEFLAG">
69 <!-- WinCE is Unicode-only platform: -->
70 <if cond="UNICODE=='1' and FORMAT!='msevc4prj'">u</if>
71 </set>
72 <set var="WXNAMESUFFIX">
73 $(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
74 </set>
75
76 <set var="WXUNIVNAME">
77 <if cond="WXUNIV=='1'">univ</if>
78 </set>
79 <set var="WXUNIV_DEFINE">
80 <if cond="WXUNIV=='1'">__WXUNIVERSAL__</if>
81 </set>
82
83 <if cond="FORMAT=='autoconf'">
84 <set var="WXNAMEPREFIX">wx_base$(WXBASEPORT)</set>
85 <set var="WXNAMEPREFIXGUI">wx_$(PORTNAME)$(WXUNIVNAME)</set>
86 <set var="WXVERSIONTAG">-$(WX_RELEASE)</set>
87 </if>
88 <if cond="FORMAT!='autoconf'">
89 <set var="WXNAMEPREFIX">
90 wxbase$(WXBASEPORT)$(WX_RELEASE_NODOT)
91 </set>
92 <set var="WXNAMEPREFIXGUI">
93 wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)</set>
94 <set var="WXVERSIONTAG"></set>
95 </if>
96 <set var="WXDLLNAMEPREFIX">
97 <if cond="PLATFORM_WIN32=='1'">
98 wxbase$(WXBASEPORT)$(WXWIN32DLLVERSION)
99 </if>
100 <if cond="PLATFORM_WIN32=='0'">$(WXNAMEPREFIX)</if>
101 </set>
102 <set var="WXDLLNAMEPREFIXGUI">
103 <if cond="PLATFORM_WIN32=='1'">
104 wx$(PORTNAME)$(WXUNIVNAME)$(WXWIN32DLLVERSION)
105 </if>
106 <if cond="PLATFORM_WIN32=='0'">$(WXNAMEPREFIXGUI)</if>
107 </set>
108 <set var="WXDLLVERSIONTAG">
109 <if cond="PLATFORM_WIN32=='1'"></if>
110 <if cond="PLATFORM_WIN32=='0'">$(WXVERSIONTAG)</if>
111 </set>
112
113
114 <!-- =============================================================== -->
115 <!-- Names of component libraries: -->
116 <!-- =============================================================== -->
117
118 <set var="WXLIB_BASE">
119 <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('base')))</if>
120 </set>
121 <set var="WXLIB_NET">
122 <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('net')))</if>
123 </set>
124 <set var="WXLIB_QA">
125 <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('qa')))</if>
126 </set>
127 <set var="WXLIB_CORE">
128 <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('core')))</if>
129 </set>
130 <set var="WXLIB_ADV">
131 <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('adv')))</if>
132 </set>
133 <set var="WXLIB_MEDIA">
134 <if cond="MONOLITHIC=='0' and USE_MEDIA=='1'">$(mk.evalExpr(wxwin.mkLibName('media')))</if>
135 </set>
136 <set var="WXLIB_HTML">
137 <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('html')))</if>
138 </set>
139 <set var="WXLIB_XML">
140 <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('xml')))</if>
141 </set>
142 <set var="WXLIB_XRC">
143 <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('xrc')))</if>
144 </set>
145 <set var="WXLIB_AUI">
146 <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('aui')))</if>
147 </set>
148 <set var="WXLIB_PROPGRID">
149 <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('propgrid')))</if>
150 </set>
151 <set var="WXLIB_RICHTEXT">
152 <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('richtext')))</if>
153 </set>
154 <set var="WXLIB_STC">
155 <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('stc')))</if>
156 </set>
157
158 <set var="WXLIB_MONO">
159 <if cond="MONOLITHIC=='1'">$(mk.evalExpr(wxwin.mkLibName('mono')))</if>
160 </set>
161
162
163 <!-- =============================================================== -->
164 <!-- Where to store built libraries and objects: -->
165 <!-- =============================================================== -->
166
167 <set var="DIR_SUFFIX_CPU">
168 <if cond="FORMAT=='msevc4prj'">_$(CPU)</if>
169 <if cond="TARGET_CPU=='amd64'">_amd64</if>
170 <if cond="TARGET_CPU=='AMD64'">_amd64</if>
171 <if cond="TARGET_CPU=='ia64'">_ia64</if>
172 <if cond="TARGET_CPU=='IA64'">_ia64</if>
173 </set>
174
175 <if cond="FORMAT!='autoconf'">
176 <set var="WXDLLFLAG">
177 <if cond="SHARED=='1'">dll</if>
178 </set>
179 <set var="CFG_NAME_PART">
180 $(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
181 </set>
182
183 <!-- NB: this is make_var so that it can be overriden on command line
184 like this: nmake -f makefile.vc COMPILER_PREFIX=vc6 -->
185 <set var="COMPILER_PREFIX" make_var="1">$(COMPILER)</set>
186
187 <set var="OBJS" make_var="1">
188 $(COMPILER_PREFIX)_$(CFG_NAME_PART)$(DIR_SUFFIX_CPU)
189 </set>
190
191 <set var="BUILDDIR">$(OBJS)</set>
192 </if>
193
194 <set var="LIBTYPE_SUFFIX" make_var="1">
195 <if cond="FORMAT!='autoconf' and SHARED=='0' and PLATFORM_WIN32=='1'">lib</if>
196 <if cond="FORMAT!='autoconf' and SHARED=='1' and PLATFORM_WIN32=='1'">dll</if>
197 <if cond="FORMAT=='watcom' and SHARED=='0' and PLATFORM_WIN32=='0'">$(TOOLKIT_LOWERCASE)_lib</if>
198 <if cond="FORMAT=='watcom' and SHARED=='1' and PLATFORM_WIN32=='0'">$(TOOLKIT_LOWERCASE)_dll</if>
199 </set>
200
201 <set var="LIBDIRNAME" make_var="1">
202 <if cond="FORMAT=='autoconf'">$(wx_top_builddir)/lib</if>
203 <if cond="FORMAT!='autoconf'">
204 $(nativePaths(TOP_SRCDIR))lib$(DIRSEP)$(COMPILER_PREFIX)$(DIR_SUFFIX_CPU)_$(LIBTYPE_SUFFIX)$(CFG)
205 </if>
206 </set>
207
208 <if cond="FORMAT!='autoconf'">
209 <set var="SETUPHDIR" make_var="1">
210 $(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
211 </set>
212 </if>
213
214
215
216 <!-- =============================================================== -->
217 <!-- Templates for libs: -->
218 <!-- =============================================================== -->
219
220 <set var="DEBUGINFO">
221 <if cond="BUILD=='debug' and DEBUG_INFO=='default'">on</if>
222 <if cond="DEBUG_INFO=='1'">on</if>
223 <if cond="BUILD=='release' and DEBUG_INFO=='default'">off</if>
224 <if cond="DEBUG_INFO=='0'">off</if>
225 </set>
226 <set var="DEBUGRUNTIME">
227 <if cond="DEBUG_RUNTIME_LIBS=='default' and BUILD=='debug'">on</if>
228 <if cond="DEBUG_RUNTIME_LIBS=='default' and BUILD=='release'">off</if>
229 <if cond="DEBUG_RUNTIME_LIBS=='0'">off</if>
230 <if cond="DEBUG_RUNTIME_LIBS=='1'">on</if>
231 </set>
232 <set var="OPTIMIZEFLAG">
233 <if cond="BUILD=='debug'">off</if>
234 <if cond="BUILD=='release'">speed</if>
235 </set>
236 <set var="EXCEPTIONSFLAG">
237 <if cond="USE_EXCEPTIONS=='1'">on</if>
238 <if cond="USE_EXCEPTIONS=='0'">off</if>
239 </set>
240 <set var="RTTIFLAG">
241 <if cond="USE_RTTI=='1'">on</if>
242 <if cond="USE_RTTI=='0'">off</if>
243 </set>
244 <set var="THREADSFLAG">
245 <if cond="USE_THREADS=='1'">multi</if>
246 <if cond="USE_THREADS=='0'">single</if>
247 </set>
248
249 <set var="RTTI_DEFINE">
250 <if cond="USE_RTTI=='0'">wxNO_RTTI</if>
251 </set>
252 <set var="EXCEPTIONS_DEFINE">
253 <if cond="USE_EXCEPTIONS=='0'">wxNO_EXCEPTIONS</if>
254 </set>
255 <set var="THREAD_DEFINE">
256 <if cond="USE_THREADS=='0'">wxNO_THREADS</if>
257 </set>
258
259 <set var="DEBUG_DEFINE">
260 <if cond="FORMAT!='autoconf' and BUILD=='debug' and DEBUG_FLAG=='default'">__WXDEBUG__</if>
261 <if cond="FORMAT!='autoconf' and DEBUG_FLAG=='1'">__WXDEBUG__</if>
262 </set>
263 <!-- does not cover all cases, but better than nothing -->
264 <set var="NO_VC_CRTDBG">
265 <if cond="FORMAT=='msvc' and BUILD=='debug' and DEBUG_RUNTIME_LIBS=='0'">__NO_VC_CRTDBG__</if>
266 <if cond="FORMAT=='msvc' and BUILD=='release' and DEBUG_FLAG=='1'">__NO_VC_CRTDBG__</if>
267 </set>
268 <set var="UNICODE_DEFINE">
269 <if cond="FORMAT!='autoconf' and UNICODE=='1'">_UNICODE</if>
270 <if cond="FORMAT!='autoconf' and UNICODE=='0'">wxUSE_UNICODE=0</if>
271 </set>
272 <set var="MSLU_DEFINE">
273 <if cond="FORMAT!='autoconf' and MSLU=='1'">wxUSE_UNICODE_MSLU=1</if>
274 </set>
275
276 <!-- fill for the specific case of the format/compiler -->
277 <set var="WIN32_WINNT">
278 <if cond="FORMAT=='dmars' or FORMAT=='dmars_smake'">_WIN32_WINNT=0x0400</if>
279 </set>
280
281 <set var="UNICOWS_LIB">
282 <if cond="MSLU=='1'">unicows</if>
283 </set>
284
285 <if cond="FORMAT!='autoconf'">
286 <set var="GDIPLUS_LIB">
287 <if cond="USE_GDIPLUS=='1'">gdiplus</if>
288 </set>
289 <set var="GFXCTX_DEFINE">
290 <if cond="USE_GDIPLUS=='1'">wxUSE_GRAPHICS_CONTEXT=1</if>
291 </set>
292 </if>
293
294 <set var="LINK_TARGET_CPU">
295 <if cond="TARGET_CPU=='amd64'">/MACHINE:AMD64</if>
296 <if cond="TARGET_CPU=='AMD64'">/MACHINE:AMD64</if>
297 <if cond="TARGET_CPU=='ia64'">/MACHINE:IA64</if>
298 <if cond="TARGET_CPU=='IA64'">/MACHINE:IA64</if>
299 </set>
300
301 <template id="common_settings">
302 <debug-info>$(DEBUGINFO)</debug-info>
303 <debug-runtime-libs>$(DEBUGRUNTIME)</debug-runtime-libs>
304 <optimize>$(OPTIMIZEFLAG)</optimize>
305 <threading>$(THREADSFLAG)</threading>
306 <runtime-libs>$(RUNTIME_LIBS)</runtime-libs>
307 <cxx-rtti>$(RTTIFLAG)</cxx-rtti>
308 <cxx-exceptions>$(EXCEPTIONSFLAG)</cxx-exceptions>
309 <if cond="FORMAT!='autoconf'">
310 <cppflags>$(EXTRACFLAGS)</cppflags>
311 </if>
312 <define>$(NO_VC_CRTDBG)</define>
313 <define>$(WIN32_WINNT)</define>
314 <if cond="FORMAT=='msvc'">
315 <ldflags>$(LINK_TARGET_CPU)</ldflags>
316 </if>
317 <include cond="FORMAT=='msevc4prj'">$(TOP_SRCDIR)build/wince/missing</include>
318 </template>
319
320 <template id="anylib">
321 <dirname>$(LIBDIRNAME)</dirname>
322 <install-to>$(LIBDIR)</install-to>
323 </template>
324
325 <template id="3rdparty_lib" template="common_settings,anylib">
326 <if cond="FORMAT=='autoconf'">
327 <libname>$(id)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)</libname>
328 </if>
329 <if cond="FORMAT!='autoconf'">
330 <libname>$(id)$(WXDEBUGFLAG)$(HOST_SUFFIX)</libname>
331 </if>
332 <!--
333 we want to install 3rd party libs system-wide only with static
334 version of wxWidgets; otherwise they are embedded in shared libs:
335 -->
336 <install-if>SHARED=='0'</install-if>
337 <pic>$(substituteFromDict(SHARED, {'0':'off', '1':'on'}))</pic>
338 </template>
339
340
341 <!-- deal with the need to copy setup.h here: -->
342
343 <define-tag name="msvc-headers" rules="dll,lib">
344 <if cond="IS_MSVC_PRJ">
345 <msvc-project-files>
346 $(addPrefixToList('include\\', wxwin.headersOnly(value)))
347 </msvc-project-files>
348 </if>
349 </define-tag>
350
351 <set var="msvc_copy_setup_h_script">
352 <if cond="IS_MSVC_PRJ">
353 Creating $(SETUPHDIR)\wx\setup.h
354 InputPath=..\..\include\wx\%s
355
356 "$(SETUPHDIR)\wx\setup.h" : $(DOLLAR)(SOURCE) "$(DOLLAR)(INTDIR)" "$(DOLLAR)(OUTDIR)"
357 $(TAB)copy "$(DOLLAR)(InputPath)" $(SETUPHDIR)\wx\setup.h
358 </if>
359 </set>
360 <!-- this should be removed after new bakefile release -->
361 <if cond="FORMAT in ['msvs2005prj','msvs2003prj']">
362 <if cond="BAKEFILE_VERSION!='0.2.3'">
363 <warning>FIXME: THIS OBSOLETE CODE ISN'T NEEDED ANYMORE</warning>
364 </if>
365 <set var="msvc_copy_setup_h_script">
366 Creating $(SETUPHDIR)\wx\setup.h
367 InputPath=..\..\include\wx\%s
368
369 "$(SETUPHDIR)\wx\setup.h" : "$(DOLLAR)(INTDIR)" "$(DOLLAR)(OUTDIR)"
370 $(TAB)copy "$(DOLLAR)(InputPath)" $(SETUPHDIR)\wx\setup.h
371 </set>
372 </if>
373 <!-- end of what should be removed after new bakefile release -->
374
375 <define-tag name="msvc-headers-setup-h" rules="dll,lib">
376 <if cond="IS_MSVC_PRJ">
377 <msvc-headers>
378 $(addPrefixToList('wx/', value))
379 </msvc-headers>
380 <set var="_custom_build_files" append="1">
381 $(nativePaths(addPrefixToList('include/wx/', value)))
382 </set>
383 </if>
384 </define-tag>
385
386 <define-tag name="msvc-copy-setup-h" rules="dll,lib">
387 <if cond="IS_MSVC_PRJ">
388 <if cond="FORMAT=='msevc4prj'">
389 <msvc-headers-setup-h>
390 msw/wince/setup.h
391 </msvc-headers-setup-h>
392 <set var="_custom_build_include_wx_msw_wince_setup_h">
393 $(msvc_copy_setup_h_script % 'msw\wince\setup.h')
394 </set>
395 </if>
396 <if cond="FORMAT!='msevc4prj'">
397 <msvc-headers-setup-h>
398 msw/setup.h
399 univ/setup.h
400 </msvc-headers-setup-h>
401 <set var="_custom_build_include_wx_msw_setup_h">
402 <if cond="WXUNIV=='0'">
403 $(msvc_copy_setup_h_script % 'msw\setup.h')
404 </if>
405 </set>
406 <set var="_custom_build_include_wx_univ_setup_h">
407 <if cond="WXUNIV=='1'">
408 $(msvc_copy_setup_h_script % 'univ\setup.h')
409 </if>
410 </set>
411 </if>
412 </if>
413 </define-tag>
414
415 <define-tag name="msvc-create-rcdefs-h" rules="dll,lib">
416 <if cond="IS_MSVC_PRJ">
417 <msvc-headers-setup-h>
418 msw/genrcdefs.h
419 </msvc-headers-setup-h>
420 <!-- FIXME: we need another way to get the compiler name -->
421 <set var="VC_COMPILER">
422 <if cond="FORMAT=='msevc4prj'">$(_COMPILER)</if>
423 <if cond="FORMAT!='msevc4prj'">cl</if>
424 </set>
425 <set var="_custom_build_include_wx_msw_genrcdefs_h">
426 Creating $(SETUPHDIR)\wx\msw\rcdefs.h
427 InputPath=..\..\include\wx\msw\genrcdefs.h
428
429 "$(SETUPHDIR)\wx\msw\rcdefs.h" : "$(DOLLAR)(SOURCE)" "$(SETUPHDIR)\wx\msw"
430 $(TAB)$(VC_COMPILER) /EP /nologo "$(DOLLAR)(InputPath)" > "$(SETUPHDIR)\wx\msw\rcdefs.h"
431 </set>
432 <!-- this should be removed after new bakefile release -->
433 <if cond="FORMAT in ['msvs2005prj','msvs2003prj']">
434 <if cond="BAKEFILE_VERSION!='0.2.3'">
435 <warning>FIXME: THIS OBSOLETE CODE ISN'T NEEDED ANYMORE</warning>
436 </if>
437 <set var="_custom_build_include_wx_msw_genrcdefs_h">
438 Creating $(SETUPHDIR)\wx\msw\rcdefs.h
439 InputPath=..\..\include\wx\msw\genrcdefs.h
440
441 "$(SETUPHDIR)\wx\msw\rcdefs.h" : "$(SETUPHDIR)\wx\msw"
442 $(TAB)$(VC_COMPILER) /EP /nologo "$(DOLLAR)(InputPath)" > "$(SETUPHDIR)\wx\msw\rcdefs.h"
443 </set>
444 </if>
445 </if>
446 </define-tag>
447
448 <template id="msvc_setup_h">
449 <msvc-copy-setup-h/>
450 <msvc-create-rcdefs-h/>
451 </template>
452
453 <!-- =============================================================== -->
454 <!-- 3rd party libs: -->
455 <!-- =============================================================== -->
456
457 <!-- 3rd party libraries: -->
458 <include file="regex.bkl"/>
459 <include file="zlib.bkl"/>
460 <include file="png.bkl"/>
461 <include file="jpeg.bkl"/>
462 <include file="tiff.bkl"/>
463 <include file="expat.bkl"/>
464 <include file="scintilla.bkl"/>
465
466
467 <!-- =============================================================== -->
468 <!-- Templates for wxWidgets libs: -->
469 <!-- =============================================================== -->
470
471 <!-- NB: in monolithic build, even wxBase-only must be linked against
472 GUI extralibs, otherwise there would be unresolved references.
473 The variables below are defined so that all libs are used
474 in monolithic build, but not in multilib one. -->
475 <set var="EXTRALIBS_FOR_BASE">
476 <if cond="MONOLITHIC=='1'">$(EXTRALIBS) $(EXTRALIBS_GUI)</if>
477 <if cond="MONOLITHIC=='0'">$(EXTRALIBS)</if>
478 </set>
479 <set var="EXTRALIBS_FOR_GUI">
480 <if cond="MONOLITHIC=='1'"></if>
481 <if cond="MONOLITHIC=='0'">$(EXTRALIBS_GUI)</if>
482 </set>
483
484 <if cond="TOOLKIT=='MGL' and FORMAT=='watcom'">
485 <set var="MGLLIBPATH">$(DOLLAR)(%SCITECH)/lib/$(BUILD)/dos32/ow10</set>
486 <set var="MGLPMLIBPATH">
487 <if cond="DOS32=='DOS4GW'">dos4gw</if>
488 </set>
489 </if>
490
491 <template id="wx" template="common_settings">
492 <set var="wxid">$(wxwin.mk_wxid(id))</set>
493 <define>__WX$(TOOLKIT)__</define>
494 <define>$(WXUNIV_DEFINE)</define>
495 <define>$(DEBUG_DEFINE)</define>
496 <define>$(EXCEPTIONS_DEFINE)</define>
497 <define>$(RTTI_DEFINE)</define>
498 <define>$(THREAD_DEFINE)</define>
499 <define>$(UNICODE_DEFINE)</define>
500 <define>$(MSLU_DEFINE)</define>
501 <if cond="FORMAT!='autoconf'"><define>$(GFXCTX_DEFINE)</define></if>
502 <include cond="FORMAT!='autoconf'">$(SETUPHDIR)</include>
503 <include cond="FORMAT!='autoconf'">$(TOP_SRCDIR)include</include>
504 <lib-path>$(LIBDIRNAME)</lib-path>
505 <if cond="TOOLKIT=='MGL' and FORMAT=='watcom'">
506 <lib-path>$(MGLLIBPATH)</lib-path>
507 <lib-path>$(MGLLIBPATH)/$(MGLPMLIBPATH)</lib-path>
508 </if>
509
510 <warnings>max</warnings>
511 <cxxflags cond="FORMAT=='autoconf'">$(CXXWARNINGS)</cxxflags>
512 <cppflags-watcom>
513 -wcd=549 <!-- 'sizeof' operand contains compiler generated information -->
514 -wcd=656 <!-- define this function inside its class definition (may improve code quality) -->
515 -wcd=657 <!-- define this function inside its class definition (could have improved code quality) -->
516 -wcd=667 <!-- 'va_start' macro will not work without an argument before '...' -->
517 </cppflags-watcom>
518 <cxxflags-mingw>
519 -Wno-ctor-dtor-privacy <!-- only defines a private destructor and has no friends -->
520 </cxxflags-mingw>
521 </template>
522
523 <!-- for both GUI and wxBase libs/samples: -->
524 <template id="wx_append_base_nomono">
525 <!-- link against builtin 3rd party libs, if needed: -->
526 <sys-lib>$(LIB_ZLIB)</sys-lib>
527 <sys-lib>$(LIB_REGEX)</sys-lib>
528 <sys-lib>$(LIB_EXPAT)</sys-lib>
529
530 <ldlibs>$(EXTRALIBS_FOR_BASE)</ldlibs>
531
532 <!-- system libraries on os2: -->
533 <if cond="FORMAT!='autoconf' and PLATFORM_OS2=='1'">
534 <if cond="FORMAT=='watcom'">
535 <sys-lib>upm32</sys-lib>
536 </if>
537 </if>
538
539 <!-- system libraries on mgl: -->
540 <if cond="FORMAT=='watcom' and TOOLKIT=='MGL'">
541 <sys-lib>mgl</sys-lib>
542 <sys-lib>mglcpp</sys-lib>
543 <sys-lib>pm</sys-lib>
544 </if>
545
546 <!-- system libraries on windows: -->
547 <if cond="FORMAT!='autoconf' and PLATFORM_WIN32=='1'">
548 <sys-lib>$(UNICOWS_LIB)</sys-lib>
549 <sys-lib>$(GDIPLUS_LIB)</sys-lib>
550 <if cond="FORMAT=='borland'">
551 <sys-lib>ole2w32</sys-lib>
552 </if>
553 <if cond="FORMAT=='msevc4prj'">
554 <sys-lib>ole32</sys-lib>
555 <sys-lib>oleaut32</sys-lib>
556 <sys-lib>uuid</sys-lib>
557 <sys-lib>commctrl</sys-lib>
558 <sys-lib>winsock</sys-lib>
559 <sys-lib>wininet</sys-lib>
560 </if>
561 <if cond="FORMAT!='borland' and FORMAT!='msevc4prj'">
562 <sys-lib>kernel32</sys-lib>
563 <sys-lib>user32</sys-lib>
564 <sys-lib>gdi32</sys-lib>
565 <sys-lib>comdlg32</sys-lib>
566 <sys-lib>winspool</sys-lib>
567 <sys-lib>winmm</sys-lib>
568 <sys-lib>shell32</sys-lib>
569 <sys-lib>comctl32</sys-lib>
570 <sys-lib>ole32</sys-lib>
571 <sys-lib>oleaut32</sys-lib>
572 <sys-lib>uuid</sys-lib>
573 <sys-lib>rpcrt4</sys-lib>
574 <sys-lib>advapi32</sys-lib>
575 <sys-lib>wsock32</sys-lib>
576 </if>
577 <if cond="FORMAT=='borland'">
578 <sys-lib>oleacc</sys-lib>
579 </if>
580 </if>
581 </template>
582
583
584 <!-- for GUI libs/samples: -->
585 <template id="wx_append_nomono" template_append="wx_append_base_nomono">
586 <sys-lib>$(LIB_TIFF)</sys-lib>
587 <sys-lib>$(LIB_JPEG)</sys-lib>
588 <sys-lib>$(LIB_PNG)</sys-lib>
589 <ldlibs>$(EXTRALIBS_FOR_GUI)</ldlibs>
590 </template>
591
592
593 <template id="wx_append_base" template_append="wx_append_base_nomono">
594 <!-- Always link against the wxWin library in monolithic build: -->
595 <sys-lib>$(WXLIB_MONO)</sys-lib>
596 </template>
597 <template id="wx_append" template_append="wx_append_nomono">
598 <!-- Always link against the wxWin library in monolithic build: -->
599 <sys-lib>$(WXLIB_MONO)</sys-lib>
600 </template>
601
602
603 <set var="WX_DISABLE_PRECOMP_HEADERS" overwrite="0">0</set>
604
605 <template id="wx_lib_b" template="wx,anylib">
606 <set var="WXLIBNAME">$(wxwin.mkLibName(wxid))</set>
607 <libname>$(WXLIBNAME)</libname>
608
609 <define>WXBUILDING</define>
610
611 <if cond="WX_DISABLE_PRECOMP_HEADERS=='0'">
612 <if cond="FORMAT!='autoconf' and TOOLKIT in ['MSW','MGL','PM','WINCE']">
613 <sources>$(WXTOPDIR)src/common/dummy.cpp</sources>
614 <precomp-headers-gen>
615 $(WXTOPDIR)src/common/dummy.cpp
616 </precomp-headers-gen>
617 </if>
618 <precomp-headers-location>$(WXTOPDIR)include</precomp-headers-location>
619 <precomp-headers-header>wx/wxprec.h</precomp-headers-header>
620 <precomp-headers>on</precomp-headers>
621 <precomp-headers-file>wxprec_$(id)</precomp-headers-file>
622 <precomp-headers-exclude>
623 src/common/extended.c
624 </precomp-headers-exclude>
625 </if>
626
627 <if cond="IS_MSVC_PRJ=='1' and BUILDING_LIB=='1'">
628 <msvc-file-group>Common Sources:src/common/*</msvc-file-group>
629 <msvc-file-group>MSW Sources:src/msw/*</msvc-file-group>
630 <msvc-file-group>Generic Sources:src/generic/*</msvc-file-group>
631 <msvc-file-group>wxUniv Sources:src/univ/*</msvc-file-group>
632 <msvc-file-group>wxHTML Sources:src/html/*</msvc-file-group>
633 <msvc-file-group>Setup Headers:*/setup.h</msvc-file-group>
634 <msvc-file-group>MSW Headers:*wx/msw/*.h</msvc-file-group>
635 <msvc-file-group>Generic Headers:*wx/generic/*.h</msvc-file-group>
636 <msvc-file-group>wxUniv Headers:*wx/univ/*.h</msvc-file-group>
637 <msvc-file-group>wxHTML Headers:*wx/html/*.h</msvc-file-group>
638 <msvc-file-group>Common Headers:*wx/*.h</msvc-file-group>
639 </if>
640 </template>
641
642 <if cond="FORMAT=='autoconf'">
643 <set var="RCDEFDIR">
644 <if cond="TOOLKIT=='MSW'">
645 $(LIBDIRNAME)/wx/include/$(TOOLCHAIN_FULLNAME)
646 </if>
647 </set>
648 </if>
649
650 <template id="wx_dll_b" template="wx_lib_b">
651 <set var="WXDLLNAME">$(wxwin.mkDllName(wxid))</set>
652 <dllname>$(WXDLLNAME)</dllname>
653 <version>$(WX_VERSION)</version>
654 <so_version>$(WXSOVERSION)</so_version>
655
656 <!-- FIXME: until libtool scheme is implemented in bakefile -->
657 <ldflags cond="FORMAT=='autoconf'">$(WXMACVERSION_CMD)</ldflags>
658
659 <!-- version info resources: -->
660 <res-define>WXDLLNAME=$(WXDLLNAME)</res-define>
661 <if cond="FORMAT=='autoconf'">
662 <res-include>$(RCDEFDIR)</res-include>
663 <res-include>$(TOP_SRCDIR)include</res-include>
664 </if>
665 <win32-res>$(WXTOPDIR)src/msw/version.rc</win32-res>
666 </template>
667
668 <template id="wx_3rdparty_dependencies_gui" cond="USE_GUI=='1'">
669 <depends>wxtiff</depends>
670 <depends>wxjpeg</depends>
671 <depends>wxpng</depends>
672 <depends>wxscintilla</depends>
673 </template>
674
675 <template id="wx_3rdparty_dependencies"
676 template="wx_3rdparty_dependencies_gui">
677 <depends>wxexpat</depends>
678 <depends>wxzlib</depends>
679 <depends>wxregex</depends>
680 </template>
681
682 <template id="wx_3rdparty_includes_gui" cond="USE_GUI=='1'">
683 <if cond="FORMAT=='watcom' and TOOLKIT=='MGL'">
684 <include>$(DOLLAR)(%SCITECH)/include</include>
685 </if>
686 <include>$(INC_TIFF_BUILD)</include>
687 <include>$(INC_TIFF)</include>
688 <include>$(INC_JPEG)</include>
689 <include>$(INC_PNG)</include>
690 </template>
691
692 <template id="wx_3rdparty_includes"
693 template="wx_3rdparty_includes_gui">
694 <include>$(INC_ZLIB)</include>
695 <include>$(INC_REGEX)</include>
696 <include>$(INC_EXPAT)</include>
697 </template>
698
699 <template id="wx_lib"
700 template="wx_lib_b,wx_3rdparty_includes,msvc_setup_h"/>
701 <template id="wx_base_lib"
702 template="wx_lib_b,wx_3rdparty_includes,msvc_setup_h">
703 <define>wxUSE_GUI=0</define>
704 </template>
705
706 <template id="wx_dll"
707 template="wx_dll_b,wx_3rdparty_dependencies,wx_3rdparty_includes"
708 template_append="msvc_setup_h,wx_append_nomono"/>
709 <template id="wx_base_dll"
710 template="wx_dll_b,wx_3rdparty_dependencies,wx_3rdparty_includes"
711 template_append="msvc_setup_h,wx_append_base_nomono">
712 <define>wxUSE_GUI=0</define>
713 </template>
714
715 <!-- =============================================================== -->
716 <!-- Templates for building wxWidgets plugins: -->
717 <!-- =============================================================== -->
718
719 <if cond="WX_STABLE_BRANCH=='1'">
720 <set var="PLUGIN_VERSION0">
721 <if cond="PLATFORM_UNIX=='1'">$(WX_RELEASE)</if>
722 <if cond="PLATFORM_UNIX=='0'">$(WX_RELEASE_NODOT)</if>
723 </set>
724 </if>
725 <if cond="WX_STABLE_BRANCH=='0'">
726 <set var="PLUGIN_VERSION0">
727 <if cond="PLATFORM_UNIX=='1'">$(WX_VERSION)</if>
728 <if cond="PLATFORM_UNIX=='0'">$(WX_VERSION_NODOT)</if>
729 </set>
730 </if>
731 <set var="PLUGVERDELIM">
732 <if cond="PLATFORM_UNIX=='1'">-</if>
733 <if cond="PLATFORM_UNIX=='0'"></if>
734 </set>
735 <set var="PLUGIN_VERSION">$(PLUGVERDELIM)$(PLUGIN_VERSION0)</set>
736
737 <set var="PLUGINSUFFIX">
738 <if cond="UNICODE=='0' and BUILD=='release'"></if>
739 <if cond="UNICODE=='0' and BUILD=='debug'">d</if>
740 <if cond="UNICODE=='1' and BUILD=='release'">u</if>
741 <if cond="UNICODE=='1' and BUILD=='debug'">ud</if>
742 </set>
743
744 <set var="PLUGINS_INST_DIR" make_var="1">
745 $(LIBDIR)/wx/$(PLUGIN_VERSION0)
746 </set>
747
748 <define-rule name="wx-base-plugin" extends="module">
749 <template>
750 <dllname>
751 $(id)$(PLUGINSUFFIX)$(PLUGIN_VERSION)$(WXCOMPILER)
752 </dllname>
753 <define>WXUSINGDLL</define>
754 <define>wxUSE_GUI=0</define>
755 <install-to>$(PLUGINS_INST_DIR)</install-to>
756 </template>
757 </define-rule>
758
759 <define-rule name="wx-gui-plugin" extends="module">
760 <template template="wx">
761 <dllname>
762 $(id)_$(PORTNAME)$(WXUNIVNAME)$(PLUGINSUFFIX)$(PLUGIN_VERSION)$(WXCOMPILER)
763 </dllname>
764 <define>WXUSINGDLL</define>
765 <install-to>$(PLUGINS_INST_DIR)</install-to>
766 </template>
767 </define-rule>
768
769 <!-- =============================================================== -->
770 <!-- Support for wxWidgets samples: -->
771 <!-- =============================================================== -->
772
773 <!-- Link against one wxWin library. Value must be literal! -->
774 <define-tag name="wx-lib" rules="exe,dll,module">
775 <sys-lib>$(wxwin.libToLink(value))</sys-lib>
776 <ldlibs>$(wxwin.extraLdflags(value))</ldlibs>
777 <!-- msvs200?prj formats don't support external dependencies yet: -->
778 <if cond="FORMAT in ['msvc6prj','msevc4prj'] and MONOLITHIC=='0'">
779 <depends-on-dsp>$(wxwin.makeDspDependency(value))</depends-on-dsp>
780 </if>
781 </define-tag>
782
783
784 <!-- A hack to keep autoconf happy (we pass CPPFLAGS that contain
785 {top_srcdir} from configure, poor bakefile can't know that
786 and won't output top_srcdir = @top_srcdir@ line): -->
787 <set var="VARS_DONT_ELIMINATE" append="1">top_srcdir</set>
788
789
790 </makefile>