6 <requires version=
"0.2.3"/>
8 <!-- bakefile modules we need: -->
9 <using module=
"datafiles"/>
11 <!-- load python module with wxwindows helpers: -->
12 <using module=
"wxwin"/>
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"/>
21 <if cond=
"FORMAT!='autoconf'">
22 <set var=
"PLATFORM_MACOS">0</set>
25 <!-- FIXME: PalmOS is another candidate to bakefiles -->
26 <set var=
"PLATFORM_PALMOS">0</set>
29 <include file=
"config.bkl"/>
31 <include file=
"plugins_deps.bkl"/>
34 <!-- wxWidgets version numbers logic: -->
35 <include file=
"version.bkl"/>
38 <!-- ================================================================== -->
39 <!-- Names of libraries and DLLs: -->
40 <!-- ================================================================== -->
43 <if cond=
"USE_GUI=='0'">base
</if>
44 <if cond=
"USE_GUI=='1'">$(TOOLKIT_LOWERCASE)$(TOOLKIT_VERSION)
</if>
47 <set var=
"WXBASEPORT">
48 <if cond=
"TOOLKIT=='MAC'">_carbon
</if>
51 <set var=
"COMPILERORGCC">
52 <if cond=
"isdefined('COMPILER')">$(COMPILER)
</if>
53 <if cond=
"not isdefined('COMPILER')">gcc
</if>
55 <set var=
"WXCOMPILER">
56 <if cond=
"PLATFORM_WIN32=='1'">_$(COMPILERORGCC)
</if>
60 <if cond=
"PLATFORM_WIN32=='1' and OFFICIAL_BUILD=='1'"></if>
61 <if cond=
"PLATFORM_WIN32=='1' and OFFICIAL_BUILD=='0'">_$(VENDOR)
</if>
64 <set var=
"WXDEBUGFLAG">
65 <if cond=
"BUILD=='debug' and DEBUG_FLAG=='default'">d
</if>
66 <if cond=
"DEBUG_FLAG=='1'">d
</if>
68 <set var=
"WXUNICODEFLAG">
69 <!-- WinCE is Unicode-only platform: -->
70 <if cond=
"UNICODE=='1' and FORMAT!='msevc4prj'">u
</if>
72 <set var=
"WXNAMESUFFIX">
73 $(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
76 <set var=
"WXUNIVNAME">
77 <if cond=
"WXUNIV=='1'">univ
</if>
79 <set var=
"WXUNIV_DEFINE">
80 <if cond=
"WXUNIV=='1'">__WXUNIVERSAL__
</if>
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>
88 <if cond=
"FORMAT!='autoconf'">
89 <set var=
"WXNAMEPREFIX">
90 wxbase$(WXBASEPORT)$(WX_RELEASE_NODOT)
92 <set var=
"WXNAMEPREFIXGUI">
93 wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)
</set>
94 <set var=
"WXVERSIONTAG"></set>
96 <set var=
"WXDLLNAMEPREFIX">
97 <if cond=
"PLATFORM_WIN32=='1'">
98 wxbase$(WXBASEPORT)$(WXWIN32DLLVERSION)
100 <if cond=
"PLATFORM_WIN32=='0'">$(WXNAMEPREFIX)
</if>
102 <set var=
"WXDLLNAMEPREFIXGUI">
103 <if cond=
"PLATFORM_WIN32=='1'">
104 wx$(PORTNAME)$(WXUNIVNAME)$(WXWIN32DLLVERSION)
106 <if cond=
"PLATFORM_WIN32=='0'">$(WXNAMEPREFIXGUI)
</if>
108 <set var=
"WXDLLVERSIONTAG">
109 <if cond=
"PLATFORM_WIN32=='1'"></if>
110 <if cond=
"PLATFORM_WIN32=='0'">$(WXVERSIONTAG)
</if>
114 <!-- =============================================================== -->
115 <!-- Names of component libraries: -->
116 <!-- =============================================================== -->
118 <set var=
"WXLIB_BASE">
119 <if cond=
"MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('base')))
</if>
121 <set var=
"WXLIB_NET">
122 <if cond=
"MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('net')))
</if>
125 <if cond=
"MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('qa')))
</if>
127 <set var=
"WXLIB_CORE">
128 <if cond=
"MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('core')))
</if>
130 <set var=
"WXLIB_ADV">
131 <if cond=
"MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('adv')))
</if>
133 <set var=
"WXLIB_MEDIA">
134 <if cond=
"MONOLITHIC=='0' and USE_MEDIA=='1'">$(mk.evalExpr(wxwin.mkLibName('media')))
</if>
136 <set var=
"WXLIB_HTML">
137 <if cond=
"MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('html')))
</if>
139 <set var=
"WXLIB_XML">
140 <if cond=
"MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('xml')))
</if>
142 <set var=
"WXLIB_XRC">
143 <if cond=
"MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('xrc')))
</if>
145 <set var=
"WXLIB_AUI">
146 <if cond=
"MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('aui')))
</if>
148 <set var=
"WXLIB_PROPGRID">
149 <if cond=
"MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('propgrid')))
</if>
151 <set var=
"WXLIB_RICHTEXT">
152 <if cond=
"MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('richtext')))
</if>
154 <set var=
"WXLIB_STC">
155 <if cond=
"MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('stc')))
</if>
158 <set var=
"WXLIB_MONO">
159 <if cond=
"MONOLITHIC=='1'">$(mk.evalExpr(wxwin.mkLibName('mono')))
</if>
163 <!-- =============================================================== -->
164 <!-- Where to store built libraries and objects: -->
165 <!-- =============================================================== -->
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>
175 <if cond=
"FORMAT!='autoconf'">
176 <set var=
"WXDLLFLAG">
177 <if cond=
"SHARED=='1'">dll
</if>
179 <set var=
"CFG_NAME_PART">
180 $(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
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>
187 <set var=
"OBJS" make_var=
"1">
188 $(COMPILER_PREFIX)_$(CFG_NAME_PART)$(DIR_SUFFIX_CPU)
191 <set var=
"BUILDDIR">$(OBJS)
</set>
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>
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)
208 <if cond=
"FORMAT!='autoconf'">
209 <set var=
"SETUPHDIR" make_var=
"1">
210 $(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
216 <!-- =============================================================== -->
217 <!-- Templates for libs: -->
218 <!-- =============================================================== -->
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>
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>
232 <set var=
"OPTIMIZEFLAG">
233 <if cond=
"BUILD=='debug'">off
</if>
234 <if cond=
"BUILD=='release'">speed
</if>
236 <set var=
"EXCEPTIONSFLAG">
237 <if cond=
"USE_EXCEPTIONS=='1'">on
</if>
238 <if cond=
"USE_EXCEPTIONS=='0'">off
</if>
241 <if cond=
"USE_RTTI=='1'">on
</if>
242 <if cond=
"USE_RTTI=='0'">off
</if>
244 <set var=
"THREADSFLAG">
245 <if cond=
"USE_THREADS=='1'">multi
</if>
246 <if cond=
"USE_THREADS=='0'">single
</if>
249 <set var=
"RTTI_DEFINE">
250 <if cond=
"USE_RTTI=='0'">wxNO_RTTI
</if>
252 <set var=
"EXCEPTIONS_DEFINE">
253 <if cond=
"USE_EXCEPTIONS=='0'">wxNO_EXCEPTIONS
</if>
255 <set var=
"THREAD_DEFINE">
256 <if cond=
"USE_THREADS=='0'">wxNO_THREADS
</if>
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>
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>
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>
272 <set var=
"MSLU_DEFINE">
273 <if cond=
"FORMAT!='autoconf' and MSLU=='1'">wxUSE_UNICODE_MSLU=
1</if>
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>
281 <set var=
"UNICOWS_LIB">
282 <if cond=
"MSLU=='1'">unicows
</if>
285 <if cond=
"FORMAT!='autoconf'">
286 <set var=
"GDIPLUS_LIB">
287 <if cond=
"USE_GDIPLUS=='1'">gdiplus
</if>
289 <set var=
"GFXCTX_DEFINE">
290 <if cond=
"USE_GDIPLUS=='1'">wxUSE_GRAPHICS_CONTEXT=
1</if>
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>
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>
312 <define>$(NO_VC_CRTDBG)
</define>
313 <define>$(WIN32_WINNT)
</define>
314 <if cond=
"FORMAT=='msvc'">
315 <ldflags>$(LINK_TARGET_CPU)
</ldflags>
317 <include cond=
"FORMAT=='msevc4prj'">$(TOP_SRCDIR)build/wince/missing
</include>
320 <template id=
"anylib">
321 <dirname>$(LIBDIRNAME)
</dirname>
322 <install-to>$(LIBDIR)
</install-to>
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>
329 <if cond=
"FORMAT!='autoconf'">
330 <libname>$(id)$(WXDEBUGFLAG)$(HOST_SUFFIX)
</libname>
333 we want to install 3rd party libs system-wide only with static
334 version of wxWidgets; otherwise they are embedded in shared libs:
336 <install-if>SHARED=='
0'
</install-if>
337 <pic>$(substituteFromDict(SHARED, {'
0':'off', '
1':'on'}))
</pic>
341 <!-- deal with the need to copy setup.h here: -->
343 <define-tag name=
"msvc-headers" rules=
"dll,lib">
344 <if cond=
"IS_MSVC_PRJ">
346 $(addPrefixToList('include\\', wxwin.headersOnly(value)))
347 </msvc-project-files>
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
356 "$(SETUPHDIR)\wx\setup.h" : $(DOLLAR)(SOURCE) "$(DOLLAR)(INTDIR)" "$(DOLLAR)(OUTDIR)"
357 $(TAB)copy "$(DOLLAR)(InputPath)" $(SETUPHDIR)\wx\setup.h
361 <define-tag name=
"msvc-headers-setup-h" rules=
"dll,lib">
362 <if cond=
"IS_MSVC_PRJ">
364 $(addPrefixToList('wx/', value))
366 <set var=
"_custom_build_files" append=
"1">
367 $(nativePaths(addPrefixToList('include/wx/', value)))
372 <define-tag name=
"msvc-copy-setup-h" rules=
"dll,lib">
373 <if cond=
"IS_MSVC_PRJ">
374 <if cond=
"FORMAT=='msevc4prj'">
375 <msvc-headers-setup-h>
377 </msvc-headers-setup-h>
378 <set var=
"_custom_build_include_wx_msw_wince_setup_h">
379 $(msvc_copy_setup_h_script % 'msw\wince\setup.h')
382 <if cond=
"FORMAT!='msevc4prj'">
383 <msvc-headers-setup-h>
386 </msvc-headers-setup-h>
387 <set var=
"_custom_build_include_wx_msw_setup_h">
388 <if cond=
"WXUNIV=='0'">
389 $(msvc_copy_setup_h_script % 'msw\setup.h')
392 <set var=
"_custom_build_include_wx_univ_setup_h">
393 <if cond=
"WXUNIV=='1'">
394 $(msvc_copy_setup_h_script % 'univ\setup.h')
401 <define-tag name=
"msvc-create-rcdefs-h" rules=
"dll,lib">
402 <if cond=
"IS_MSVC_PRJ">
403 <msvc-headers-setup-h>
405 </msvc-headers-setup-h>
406 <!-- FIXME: we need another way to get the compiler name -->
407 <set var=
"VC_COMPILER">
408 <if cond=
"FORMAT=='msevc4prj'">$(_COMPILER)
</if>
409 <if cond=
"FORMAT!='msevc4prj'">cl
</if>
411 <set var=
"_custom_build_include_wx_msw_genrcdefs_h">
412 Creating $(SETUPHDIR)\wx\msw\rcdefs.h
413 InputPath=..\..\include\wx\msw\genrcdefs.h
415 "$(SETUPHDIR)\wx\msw\rcdefs.h" : "$(DOLLAR)(SOURCE)" "$(SETUPHDIR)\wx\msw"
416 $(TAB)$(VC_COMPILER) /EP /nologo "$(DOLLAR)(InputPath)"
> "$(SETUPHDIR)\wx\msw\rcdefs.h"
421 <template id=
"msvc_setup_h">
423 <msvc-create-rcdefs-h/>
426 <!-- =============================================================== -->
427 <!-- 3rd party libs: -->
428 <!-- =============================================================== -->
430 <!-- 3rd party libraries: -->
431 <include file=
"regex.bkl"/>
432 <include file=
"zlib.bkl"/>
433 <include file=
"png.bkl"/>
434 <include file=
"jpeg.bkl"/>
435 <include file=
"tiff.bkl"/>
436 <include file=
"expat.bkl"/>
437 <include file=
"scintilla.bkl"/>
440 <!-- =============================================================== -->
441 <!-- Templates for wxWidgets libs: -->
442 <!-- =============================================================== -->
444 <!-- NB: in monolithic build, even wxBase-only must be linked against
445 GUI extralibs, otherwise there would be unresolved references.
446 The variables below are defined so that all libs are used
447 in monolithic build, but not in multilib one. -->
448 <set var=
"EXTRALIBS_FOR_BASE">
449 <if cond=
"MONOLITHIC=='1'">$(EXTRALIBS) $(EXTRALIBS_GUI)
</if>
450 <if cond=
"MONOLITHIC=='0'">$(EXTRALIBS)
</if>
452 <set var=
"EXTRALIBS_FOR_GUI">
453 <if cond=
"MONOLITHIC=='1'"></if>
454 <if cond=
"MONOLITHIC=='0'">$(EXTRALIBS_GUI)
</if>
457 <if cond=
"TOOLKIT=='MGL' and FORMAT=='watcom'">
458 <set var=
"MGLLIBPATH">$(DOLLAR)(%SCITECH)/lib/$(BUILD)/dos32/ow10
</set>
459 <set var=
"MGLPMLIBPATH">
460 <if cond=
"DOS32=='DOS4GW'">dos4gw
</if>
464 <template id=
"wx" template=
"common_settings">
465 <set var=
"wxid">$(wxwin.mk_wxid(id))
</set>
466 <define>__WX$(TOOLKIT)__
</define>
467 <define>$(WXUNIV_DEFINE)
</define>
468 <define>$(DEBUG_DEFINE)
</define>
469 <define>$(EXCEPTIONS_DEFINE)
</define>
470 <define>$(RTTI_DEFINE)
</define>
471 <define>$(THREAD_DEFINE)
</define>
472 <define>$(UNICODE_DEFINE)
</define>
473 <define>$(MSLU_DEFINE)
</define>
474 <if cond=
"FORMAT!='autoconf'"><define>$(GFXCTX_DEFINE)
</define></if>
475 <include cond=
"FORMAT!='autoconf'">$(SETUPHDIR)
</include>
476 <include cond=
"FORMAT!='autoconf'">$(TOP_SRCDIR)include
</include>
477 <lib-path>$(LIBDIRNAME)
</lib-path>
478 <if cond=
"TOOLKIT=='MGL' and FORMAT=='watcom'">
479 <lib-path>$(MGLLIBPATH)
</lib-path>
480 <lib-path>$(MGLLIBPATH)/$(MGLPMLIBPATH)
</lib-path>
483 <warnings>max
</warnings>
484 <cxxflags cond=
"FORMAT=='autoconf'">$(CXXWARNINGS)
</cxxflags>
486 -wcd=
549 <!-- 'sizeof' operand contains compiler generated information -->
487 -wcd=
656 <!-- define this function inside its class definition (may improve code quality) -->
488 -wcd=
657 <!-- define this function inside its class definition (could have improved code quality) -->
489 -wcd=
667 <!-- 'va_start' macro will not work without an argument before '...' -->
492 -Wno-ctor-dtor-privacy
<!-- only defines a private destructor and has no friends -->
496 <!-- for both GUI and wxBase libs/samples: -->
497 <template id=
"wx_append_base_nomono">
498 <!-- link against builtin 3rd party libs, if needed: -->
499 <sys-lib>$(LIB_ZLIB)
</sys-lib>
500 <sys-lib>$(LIB_REGEX)
</sys-lib>
501 <sys-lib>$(LIB_EXPAT)
</sys-lib>
503 <ldlibs>$(EXTRALIBS_FOR_BASE)
</ldlibs>
505 <!-- system libraries on os2: -->
506 <if cond=
"FORMAT!='autoconf' and PLATFORM_OS2=='1'">
507 <if cond=
"FORMAT=='watcom'">
508 <sys-lib>upm32
</sys-lib>
512 <!-- system libraries on mgl: -->
513 <if cond=
"FORMAT=='watcom' and TOOLKIT=='MGL'">
514 <sys-lib>mgl
</sys-lib>
515 <sys-lib>mglcpp
</sys-lib>
516 <sys-lib>pm
</sys-lib>
519 <!-- system libraries on windows: -->
520 <if cond=
"FORMAT!='autoconf' and PLATFORM_WIN32=='1'">
521 <sys-lib>$(UNICOWS_LIB)
</sys-lib>
522 <sys-lib>$(GDIPLUS_LIB)
</sys-lib>
523 <if cond=
"FORMAT=='borland'">
524 <sys-lib>ole2w32
</sys-lib>
526 <if cond=
"FORMAT=='msevc4prj'">
527 <sys-lib>ole32
</sys-lib>
528 <sys-lib>oleaut32
</sys-lib>
529 <sys-lib>uuid
</sys-lib>
530 <sys-lib>commctrl
</sys-lib>
531 <sys-lib>winsock
</sys-lib>
532 <sys-lib>wininet
</sys-lib>
534 <if cond=
"FORMAT!='borland' and FORMAT!='msevc4prj'">
535 <sys-lib>kernel32
</sys-lib>
536 <sys-lib>user32
</sys-lib>
537 <sys-lib>gdi32
</sys-lib>
538 <sys-lib>comdlg32
</sys-lib>
539 <sys-lib>winspool
</sys-lib>
540 <sys-lib>winmm
</sys-lib>
541 <sys-lib>shell32
</sys-lib>
542 <sys-lib>comctl32
</sys-lib>
543 <sys-lib>ole32
</sys-lib>
544 <sys-lib>oleaut32
</sys-lib>
545 <sys-lib>uuid
</sys-lib>
546 <sys-lib>rpcrt4
</sys-lib>
547 <sys-lib>advapi32
</sys-lib>
548 <sys-lib>wsock32
</sys-lib>
549 <!-- this one is only used if wxUSE_URL_NATIVE==1 but we don't
550 know if it is here so just add it unconditionally -->
551 <sys-lib>wininet
</sys-lib>
553 <if cond=
"FORMAT=='borland'">
554 <sys-lib>oleacc
</sys-lib>
560 <!-- for GUI libs/samples: -->
561 <template id=
"wx_append_nomono" template_append=
"wx_append_base_nomono">
562 <sys-lib>$(LIB_TIFF)
</sys-lib>
563 <sys-lib>$(LIB_JPEG)
</sys-lib>
564 <sys-lib>$(LIB_PNG)
</sys-lib>
565 <ldlibs>$(EXTRALIBS_FOR_GUI)
</ldlibs>
569 <template id=
"wx_append_base" template_append=
"wx_append_base_nomono">
570 <!-- Always link against the wxWin library in monolithic build: -->
571 <sys-lib>$(WXLIB_MONO)
</sys-lib>
573 <template id=
"wx_append" template_append=
"wx_append_nomono">
574 <!-- Always link against the wxWin library in monolithic build: -->
575 <sys-lib>$(WXLIB_MONO)
</sys-lib>
579 <set var=
"WX_DISABLE_PRECOMP_HEADERS" overwrite=
"0">0</set>
581 <template id=
"wx_lib_b" template=
"wx,anylib">
582 <set var=
"WXLIBNAME">$(wxwin.mkLibName(wxid))
</set>
583 <libname>$(WXLIBNAME)
</libname>
585 <define>WXBUILDING
</define>
587 <if cond=
"WX_DISABLE_PRECOMP_HEADERS=='0'">
588 <if cond=
"FORMAT!='autoconf' and TOOLKIT in ['MSW','MGL','PM','WINCE']">
589 <sources>$(WXTOPDIR)src/common/dummy.cpp
</sources>
590 <precomp-headers-gen>
591 $(WXTOPDIR)src/common/dummy.cpp
592 </precomp-headers-gen>
594 <precomp-headers-location>$(WXTOPDIR)include
</precomp-headers-location>
595 <precomp-headers-header>wx/wxprec.h
</precomp-headers-header>
596 <precomp-headers>on
</precomp-headers>
597 <precomp-headers-file>wxprec_$(id)
</precomp-headers-file>
598 <precomp-headers-exclude>
599 src/common/extended.c
600 </precomp-headers-exclude>
603 <if cond=
"IS_MSVC_PRJ=='1' and BUILDING_LIB=='1'">
604 <msvc-file-group>Common Sources:src/common/*
</msvc-file-group>
605 <msvc-file-group>MSW Sources:src/msw/*
</msvc-file-group>
606 <msvc-file-group>Generic Sources:src/generic/*
</msvc-file-group>
607 <msvc-file-group>wxUniv Sources:src/univ/*
</msvc-file-group>
608 <msvc-file-group>wxHTML Sources:src/html/*
</msvc-file-group>
609 <msvc-file-group>Setup Headers:*/setup.h
</msvc-file-group>
610 <msvc-file-group>MSW Headers:*wx/msw/*.h
</msvc-file-group>
611 <msvc-file-group>Generic Headers:*wx/generic/*.h
</msvc-file-group>
612 <msvc-file-group>wxUniv Headers:*wx/univ/*.h
</msvc-file-group>
613 <msvc-file-group>wxHTML Headers:*wx/html/*.h
</msvc-file-group>
614 <msvc-file-group>Common Headers:*wx/*.h
</msvc-file-group>
618 <if cond=
"FORMAT=='autoconf'">
620 <if cond=
"TOOLKIT=='MSW'">
621 $(LIBDIRNAME)/wx/include/$(TOOLCHAIN_FULLNAME)
626 <template id=
"wx_dll_b" template=
"wx_lib_b">
627 <set var=
"WXDLLNAME">$(wxwin.mkDllName(wxid))
</set>
628 <dllname>$(WXDLLNAME)
</dllname>
629 <version>$(WX_VERSION)
</version>
630 <so_version>$(WXSOVERSION)
</so_version>
632 <!-- FIXME: until libtool scheme is implemented in bakefile -->
633 <ldflags cond=
"FORMAT=='autoconf'">$(WXMACVERSION_CMD)
</ldflags>
635 <!-- version info resources: -->
636 <res-define>WXDLLNAME=$(WXDLLNAME)
</res-define>
637 <if cond=
"FORMAT=='autoconf'">
638 <res-include>$(RCDEFDIR)
</res-include>
639 <res-include>$(TOP_SRCDIR)include
</res-include>
641 <win32-res>$(WXTOPDIR)src/msw/version.rc
</win32-res>
644 <template id=
"wx_3rdparty_dependencies_gui" cond=
"USE_GUI=='1'">
645 <depends>wxtiff
</depends>
646 <depends>wxjpeg
</depends>
647 <depends>wxpng
</depends>
648 <depends>wxscintilla
</depends>
651 <template id=
"wx_3rdparty_dependencies"
652 template=
"wx_3rdparty_dependencies_gui">
653 <depends>wxexpat
</depends>
654 <depends>wxzlib
</depends>
655 <depends>wxregex
</depends>
658 <template id=
"wx_3rdparty_includes_gui" cond=
"USE_GUI=='1'">
659 <if cond=
"FORMAT=='watcom' and TOOLKIT=='MGL'">
660 <include>$(DOLLAR)(%SCITECH)/include
</include>
662 <include>$(INC_TIFF_BUILD)
</include>
663 <include>$(INC_TIFF)
</include>
664 <include>$(INC_JPEG)
</include>
665 <include>$(INC_PNG)
</include>
668 <template id=
"wx_3rdparty_includes"
669 template=
"wx_3rdparty_includes_gui">
670 <include>$(INC_ZLIB)
</include>
671 <include>$(INC_REGEX)
</include>
672 <include>$(INC_EXPAT)
</include>
675 <template id=
"wx_lib"
676 template=
"wx_lib_b,wx_3rdparty_includes,msvc_setup_h"/>
677 <template id=
"wx_base_lib"
678 template=
"wx_lib_b,wx_3rdparty_includes,msvc_setup_h">
679 <define>wxUSE_GUI=
0</define>
682 <template id=
"wx_dll"
683 template=
"wx_dll_b,wx_3rdparty_dependencies,wx_3rdparty_includes"
684 template_append=
"msvc_setup_h,wx_append_nomono"/>
685 <template id=
"wx_base_dll"
686 template=
"wx_dll_b,wx_3rdparty_dependencies,wx_3rdparty_includes"
687 template_append=
"msvc_setup_h,wx_append_base_nomono">
688 <define>wxUSE_GUI=
0</define>
691 <!-- =============================================================== -->
692 <!-- Templates for building wxWidgets plugins: -->
693 <!-- =============================================================== -->
695 <if cond=
"WX_STABLE_BRANCH=='1'">
696 <set var=
"PLUGIN_VERSION0">
697 <if cond=
"PLATFORM_UNIX=='1'">$(WX_RELEASE)
</if>
698 <if cond=
"PLATFORM_UNIX=='0'">$(WX_RELEASE_NODOT)
</if>
701 <if cond=
"WX_STABLE_BRANCH=='0'">
702 <set var=
"PLUGIN_VERSION0">
703 <if cond=
"PLATFORM_UNIX=='1'">$(WX_VERSION)
</if>
704 <if cond=
"PLATFORM_UNIX=='0'">$(WX_VERSION_NODOT)
</if>
707 <set var=
"PLUGVERDELIM">
708 <if cond=
"PLATFORM_UNIX=='1'">-
</if>
709 <if cond=
"PLATFORM_UNIX=='0'"></if>
711 <set var=
"PLUGIN_VERSION">$(PLUGVERDELIM)$(PLUGIN_VERSION0)
</set>
713 <set var=
"PLUGINSUFFIX">
714 <if cond=
"UNICODE=='0' and BUILD=='release'"></if>
715 <if cond=
"UNICODE=='0' and BUILD=='debug'">d
</if>
716 <if cond=
"UNICODE=='1' and BUILD=='release'">u
</if>
717 <if cond=
"UNICODE=='1' and BUILD=='debug'">ud
</if>
720 <set var=
"PLUGINS_INST_DIR" make_var=
"1">
721 $(LIBDIR)/wx/$(PLUGIN_VERSION0)
724 <define-rule name=
"wx-base-plugin" extends=
"module">
727 $(id)$(PLUGINSUFFIX)$(PLUGIN_VERSION)$(WXCOMPILER)
729 <define>WXUSINGDLL
</define>
730 <define>wxUSE_GUI=
0</define>
731 <install-to>$(PLUGINS_INST_DIR)
</install-to>
735 <define-rule name=
"wx-gui-plugin" extends=
"module">
736 <template template=
"wx">
738 $(id)_$(PORTNAME)$(WXUNIVNAME)$(PLUGINSUFFIX)$(PLUGIN_VERSION)$(WXCOMPILER)
740 <define>WXUSINGDLL
</define>
741 <install-to>$(PLUGINS_INST_DIR)
</install-to>
745 <!-- =============================================================== -->
746 <!-- Support for wxWidgets samples: -->
747 <!-- =============================================================== -->
749 <!-- Link against one wxWin library. Value must be literal! -->
750 <define-tag name=
"wx-lib" rules=
"exe,dll,module">
751 <sys-lib>$(wxwin.libToLink(value))
</sys-lib>
752 <ldlibs>$(wxwin.extraLdflags(value))
</ldlibs>
753 <!-- msvs200?prj formats don't support external dependencies yet: -->
754 <if cond=
"FORMAT in ['msvc6prj','msevc4prj'] and MONOLITHIC=='0'">
755 <depends-on-dsp>$(wxwin.makeDspDependency(value))
</depends-on-dsp>
760 <!-- A hack to keep autoconf happy (we pass CPPFLAGS that contain
761 {top_srcdir} from configure, poor bakefile can't know that
762 and won't output top_srcdir = @top_srcdir@ line): -->
763 <set var=
"VARS_DONT_ELIMINATE" append=
"1">top_srcdir
</set>