]>
Commit | Line | Data |
---|---|---|
1 | <?xml version="1.0" ?> | |
2 | <!-- $Id$ --> | |
3 | ||
4 | <makefile> | |
5 | ||
6 | <requires version="0.2.1"/> | |
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' and USE_MEDIA=='1'">$(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 | <set var="WXLIB_AUI"> | |
153 | <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('aui')))</if> | |
154 | </set> | |
155 | <set var="WXLIB_RICHTEXT"> | |
156 | <if cond="MONOLITHIC=='0'">$(mk.evalExpr(wxwin.mkLibName('richtext')))</if> | |
157 | </set> | |
158 | ||
159 | <set var="WXLIB_MONO"> | |
160 | <if cond="MONOLITHIC=='1'">$(mk.evalExpr(wxwin.mkLibName('mono')))</if> | |
161 | </set> | |
162 | ||
163 | ||
164 | <!-- =============================================================== --> | |
165 | <!-- Where to store built libraries and objects: --> | |
166 | <!-- =============================================================== --> | |
167 | ||
168 | <set var="DIR_SUFFIX_CPU"> | |
169 | <if cond="FORMAT=='msevc4prj'">_$(CPU)</if> | |
170 | <if cond="TARGET_CPU=='amd64'">_amd64</if> | |
171 | <if cond="TARGET_CPU=='AMD64'">_amd64</if> | |
172 | <if cond="TARGET_CPU=='ia64'">_ia64</if> | |
173 | <if cond="TARGET_CPU=='IA64'">_ia64</if> | |
174 | </set> | |
175 | ||
176 | <if cond="FORMAT!='autoconf'"> | |
177 | <set var="WXDLLFLAG"> | |
178 | <if cond="SHARED=='1'">dll</if> | |
179 | </set> | |
180 | <set var="CFG_NAME_PART"> | |
181 | $(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG) | |
182 | </set> | |
183 | <set var="OBJS" make_var="1"> | |
184 | <if cond="FORMAT!='cbuilderx'"> | |
185 | $(COMPILER)_$(CFG_NAME_PART)$(DIR_SUFFIX_CPU) | |
186 | </if> | |
187 | <!-- FIXME: waiting for removal after CBX has better ../ dirs | |
188 | support --> | |
189 | <if cond="FORMAT=='cbuilderx'">build_cbx_$(CFG_NAME_PART)</if> | |
190 | </set> | |
191 | ||
192 | <set var="BUILDDIR">$(OBJS)</set> | |
193 | </if> | |
194 | ||
195 | <set var="LIBTYPE_SUFFIX" make_var="1"> | |
196 | <if cond="FORMAT!='autoconf' and SHARED=='0' and PLATFORM_WIN32=='1'">lib</if> | |
197 | <if cond="FORMAT!='autoconf' and SHARED=='1' and PLATFORM_WIN32=='1'">dll</if> | |
198 | <if cond="FORMAT=='watcom' and SHARED=='0' and PLATFORM_WIN32=='0'">$(TOOLKIT_LOWERCASE)_lib</if> | |
199 | <if cond="FORMAT=='watcom' and SHARED=='1' and PLATFORM_WIN32=='0'">$(TOOLKIT_LOWERCASE)_dll</if> | |
200 | </set> | |
201 | ||
202 | <set var="LIBDIRNAME" make_var="1"> | |
203 | <if cond="FORMAT=='autoconf'">$(wx_top_builddir)/lib</if> | |
204 | <if cond="FORMAT!='autoconf'"> | |
205 | $(nativePaths(TOP_SRCDIR))lib$(DIRSEP)$(COMPILER)$(DIR_SUFFIX_CPU)_$(LIBTYPE_SUFFIX)$(CFG) | |
206 | </if> | |
207 | </set> | |
208 | ||
209 | <if cond="FORMAT!='autoconf'"> | |
210 | <set var="SETUPHDIR" make_var="1"> | |
211 | $(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG) | |
212 | </set> | |
213 | </if> | |
214 | ||
215 | ||
216 | ||
217 | <!-- =============================================================== --> | |
218 | <!-- Templates for libs: --> | |
219 | <!-- =============================================================== --> | |
220 | ||
221 | <set var="DEBUGINFO"> | |
222 | <if cond="BUILD=='debug' and DEBUG_INFO=='default'">on</if> | |
223 | <if cond="DEBUG_INFO=='1'">on</if> | |
224 | <if cond="BUILD=='release' and DEBUG_INFO=='default'">off</if> | |
225 | <if cond="DEBUG_INFO=='0'">off</if> | |
226 | </set> | |
227 | <set var="DEBUGRUNTIME"> | |
228 | <if cond="DEBUG_RUNTIME_LIBS=='default' and BUILD=='debug'">on</if> | |
229 | <if cond="DEBUG_RUNTIME_LIBS=='default' and BUILD=='release'">off</if> | |
230 | <if cond="DEBUG_RUNTIME_LIBS=='0'">off</if> | |
231 | <if cond="DEBUG_RUNTIME_LIBS=='1'">on</if> | |
232 | </set> | |
233 | <set var="OPTIMIZEFLAG"> | |
234 | <if cond="BUILD=='debug'">off</if> | |
235 | <if cond="BUILD=='release'">speed</if> | |
236 | </set> | |
237 | <set var="EXCEPTIONSFLAG"> | |
238 | <if cond="USE_EXCEPTIONS=='1'">on</if> | |
239 | <if cond="USE_EXCEPTIONS=='0'">off</if> | |
240 | </set> | |
241 | <set var="RTTIFLAG"> | |
242 | <if cond="USE_RTTI=='1'">on</if> | |
243 | <if cond="USE_RTTI=='0'">off</if> | |
244 | </set> | |
245 | <set var="THREADSFLAG"> | |
246 | <if cond="USE_THREADS=='1'">multi</if> | |
247 | <if cond="USE_THREADS=='0'">single</if> | |
248 | </set> | |
249 | ||
250 | <set var="RTTI_DEFINE"> | |
251 | <if cond="USE_RTTI=='0'">wxNO_RTTI</if> | |
252 | </set> | |
253 | <set var="EXCEPTIONS_DEFINE"> | |
254 | <if cond="USE_EXCEPTIONS=='0'">wxNO_EXCEPTIONS</if> | |
255 | </set> | |
256 | <set var="THREAD_DEFINE"> | |
257 | <if cond="USE_THREADS=='0'">wxNO_THREADS</if> | |
258 | </set> | |
259 | ||
260 | <set var="DEBUG_DEFINE"> | |
261 | <if cond="FORMAT!='autoconf' and BUILD=='debug' and DEBUG_FLAG=='default'">__WXDEBUG__</if> | |
262 | <if cond="FORMAT!='autoconf' and DEBUG_FLAG=='1'">__WXDEBUG__</if> | |
263 | </set> | |
264 | <!-- does not cover all cases, but better than nothing --> | |
265 | <set var="NO_VC_CRTDBG"> | |
266 | <if cond="FORMAT=='msvc' and BUILD=='debug' and DEBUG_RUNTIME_LIBS=='0'">__NO_VC_CRTDBG__</if> | |
267 | <if cond="FORMAT=='msvc' and BUILD=='release' and DEBUG_FLAG=='1'">__NO_VC_CRTDBG__</if> | |
268 | </set> | |
269 | <set var="UNICODE_DEFINE"> | |
270 | <if cond="FORMAT!='autoconf' and UNICODE=='1'">_UNICODE</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=='msevc4prj' and | |
315 | BAKEFILE_VERSION in ['0.1.9'] and | |
316 | USE_RTTI=='0'"> | |
317 | <!-- hack to make eVC4 2.6.2 project files compatible with what we had in 2.6.1 --> | |
318 | <set var="_ldlibs">$(_ldlibs.replace('ccrtrtti.lib', ''))</set> | |
319 | <set var="_cppflags">$(_cppflags.replace('/GR', ''))</set> | |
320 | </if> | |
321 | <if cond="FORMAT=='msvc'"> | |
322 | <ldflags>$(LINK_TARGET_CPU)</ldflags> | |
323 | </if> | |
324 | <include cond="FORMAT=='msevc4prj'">$(TOP_SRCDIR)build/wince/missing</include> | |
325 | </template> | |
326 | ||
327 | <template id="anylib"> | |
328 | <dirname>$(LIBDIRNAME)</dirname> | |
329 | <install-to>$(LIBDIR)</install-to> | |
330 | </template> | |
331 | ||
332 | <template id="3rdparty_lib" template="common_settings,anylib"> | |
333 | <if cond="FORMAT=='autoconf'"> | |
334 | <libname>$(id)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)</libname> | |
335 | </if> | |
336 | <if cond="FORMAT!='autoconf'"> | |
337 | <libname>$(id)$(WXDEBUGFLAG)$(HOST_SUFFIX)</libname> | |
338 | </if> | |
339 | <!-- | |
340 | we want to install 3rd party libs system-wide only with static | |
341 | version of wxWidgets; otherwise they are embedded in shared libs: | |
342 | --> | |
343 | <install-if>SHARED=='0'</install-if> | |
344 | <pic>$(substituteFromDict(SHARED, {'0':'off', '1':'on'}))</pic> | |
345 | </template> | |
346 | ||
347 | ||
348 | <!-- deal with the need to copy setup.h here: --> | |
349 | ||
350 | <set var="IS_MSVC_PRJ">$(FORMAT in ['msvc6prj','msevc4prj'])</set> | |
351 | ||
352 | <define-tag name="msvc-headers" rules="dll,lib"> | |
353 | <if cond="IS_MSVC_PRJ"> | |
354 | <msvc-project-files> | |
355 | $(addPrefixToList('include\\', wxwin.headersOnly(value))) | |
356 | </msvc-project-files> | |
357 | </if> | |
358 | </define-tag> | |
359 | ||
360 | <set var="msvc_copy_setup_h_script"> | |
361 | <if cond="IS_MSVC_PRJ"> | |
362 | Creating $(SETUPHDIR)\wx\setup.h | |
363 | InputPath=..\include\wx\%s | |
364 | ||
365 | "$(SETUPHDIR)\wx\setup.h" : $(DOLLAR)(SOURCE) "$(DOLLAR)(INTDIR)" "$(DOLLAR)(OUTDIR)" | |
366 | $(TAB)copy "$(DOLLAR)(InputPath)" $(SETUPHDIR)\wx\setup.h | |
367 | </if> | |
368 | </set> | |
369 | ||
370 | <define-tag name="msvc-headers-setup-h" rules="dll,lib"> | |
371 | <if cond="IS_MSVC_PRJ"> | |
372 | <msvc-headers> | |
373 | $(addPrefixToList('wx/', value)) | |
374 | </msvc-headers> | |
375 | <set var="_custom_build_files" append="1"> | |
376 | $(nativePaths(addPrefixToList('include/wx/', value))) | |
377 | </set> | |
378 | </if> | |
379 | </define-tag> | |
380 | ||
381 | <define-tag name="msvc-copy-setup-h" rules="dll,lib"> | |
382 | <if cond="IS_MSVC_PRJ"> | |
383 | <if cond="FORMAT=='msevc4prj'"> | |
384 | <msvc-headers-setup-h> | |
385 | msw/wince/setup.h | |
386 | </msvc-headers-setup-h> | |
387 | <set var="_custom_build_include_wx_msw_wince_setup_h"> | |
388 | $(msvc_copy_setup_h_script % 'msw\wince\setup.h') | |
389 | </set> | |
390 | </if> | |
391 | <if cond="FORMAT!='msevc4prj'"> | |
392 | <msvc-headers-setup-h> | |
393 | msw/setup.h | |
394 | univ/setup.h | |
395 | </msvc-headers-setup-h> | |
396 | <set var="_custom_build_include_wx_msw_setup_h"> | |
397 | <if cond="WXUNIV=='0'"> | |
398 | $(msvc_copy_setup_h_script % 'msw\setup.h') | |
399 | </if> | |
400 | </set> | |
401 | <set var="_custom_build_include_wx_univ_setup_h"> | |
402 | <if cond="WXUNIV=='1'"> | |
403 | $(msvc_copy_setup_h_script % 'univ\setup.h') | |
404 | </if> | |
405 | </set> | |
406 | </if> | |
407 | </if> | |
408 | </define-tag> | |
409 | ||
410 | <define-tag name="msvc-create-rcdefs-h" rules="dll,lib"> | |
411 | <if cond="IS_MSVC_PRJ"> | |
412 | <msvc-headers-setup-h> | |
413 | msw/genrcdefs.h | |
414 | </msvc-headers-setup-h> | |
415 | <!-- FIXME: we need another way to get the compiler name --> | |
416 | <set var="VC_COMPILER"> | |
417 | <if cond="FORMAT=='msevc4prj'">$(_COMPILER)</if> | |
418 | <if cond="FORMAT!='msevc4prj'">cl</if> | |
419 | </set> | |
420 | <set var="_custom_build_include_wx_msw_genrcdefs_h"> | |
421 | Creating $(SETUPHDIR)\wx\msw\rcdefs.h | |
422 | ||
423 | "$(SETUPHDIR)\wx\msw\rcdefs.h" : "$(DOLLAR)(SOURCE)" "$(DOLLAR)(SETUPHDIR)\wx\msw" | |
424 | $(TAB)$(VC_COMPILER) /EP /nologo "$(DOLLAR)(InputPath)" > "$(SETUPHDIR)\wx\msw\rcdefs.h" | |
425 | </set> | |
426 | </if> | |
427 | </define-tag> | |
428 | ||
429 | <template id="msvc_setup_h"> | |
430 | <msvc-copy-setup-h/> | |
431 | <msvc-create-rcdefs-h/> | |
432 | </template> | |
433 | ||
434 | <!-- =============================================================== --> | |
435 | <!-- 3rd party libs: --> | |
436 | <!-- =============================================================== --> | |
437 | ||
438 | <!-- 3rd party libraries: --> | |
439 | <include file="regex.bkl"/> | |
440 | <include file="zlib.bkl"/> | |
441 | <include file="png.bkl"/> | |
442 | <include file="jpeg.bkl"/> | |
443 | <include file="tiff.bkl"/> | |
444 | <include file="odbc.bkl"/> | |
445 | <include file="expat.bkl"/> | |
446 | ||
447 | ||
448 | <!-- =============================================================== --> | |
449 | <!-- Templates for wxWidgets libs: --> | |
450 | <!-- =============================================================== --> | |
451 | ||
452 | <!-- NB: in monolithic build, even wxBase-only must be linked against | |
453 | GUI extralibs, otherwise there would be unresolved references. | |
454 | The variables below are defined so that all libs are used | |
455 | in monolithic build, but not in multilib one. --> | |
456 | <set var="EXTRALIBS_FOR_BASE"> | |
457 | <if cond="MONOLITHIC=='1'">$(EXTRALIBS) $(EXTRALIBS_GUI)</if> | |
458 | <if cond="MONOLITHIC=='0'">$(EXTRALIBS)</if> | |
459 | </set> | |
460 | <set var="EXTRALIBS_FOR_GUI"> | |
461 | <if cond="MONOLITHIC=='1'"></if> | |
462 | <if cond="MONOLITHIC=='0'">$(EXTRALIBS_GUI)</if> | |
463 | </set> | |
464 | ||
465 | <if cond="TOOLKIT=='MGL' and FORMAT=='watcom'"> | |
466 | <set var="MGLLIBPATH">$(DOLLAR)(%SCITECH)/lib/$(BUILD)/dos32/ow10</set> | |
467 | <set var="MGLPMLIBPATH"> | |
468 | <if cond="DOS32=='DOS4GW'">dos4gw</if> | |
469 | </set> | |
470 | </if> | |
471 | ||
472 | <template id="wx" template="common_settings"> | |
473 | <set var="wxid">$(wxwin.mk_wxid(id))</set> | |
474 | <define>__WX$(TOOLKIT)__</define> | |
475 | <define>$(WXUNIV_DEFINE)</define> | |
476 | <define>$(DEBUG_DEFINE)</define> | |
477 | <define>$(EXCEPTIONS_DEFINE)</define> | |
478 | <define>$(RTTI_DEFINE)</define> | |
479 | <define>$(THREAD_DEFINE)</define> | |
480 | <define>$(UNICODE_DEFINE)</define> | |
481 | <define>$(MSLU_DEFINE)</define> | |
482 | <if cond="FORMAT!='autoconf'"><define>$(GFXCTX_DEFINE)</define></if> | |
483 | <include cond="FORMAT!='autoconf'">$(SETUPHDIR)</include> | |
484 | <include cond="FORMAT!='autoconf'">$(TOP_SRCDIR)include</include> | |
485 | <lib-path>$(LIBDIRNAME)</lib-path> | |
486 | <if cond="TOOLKIT=='MGL' and FORMAT=='watcom'"> | |
487 | <lib-path>$(MGLLIBPATH)</lib-path> | |
488 | <lib-path>$(MGLLIBPATH)/$(MGLPMLIBPATH)</lib-path> | |
489 | </if> | |
490 | <warnings>max</warnings> | |
491 | <cppflags-watcom> | |
492 | -wcd=549 <!-- 'sizeof' operand contains compiler generated information --> | |
493 | -wcd=656 <!-- define this function inside its class definition (may improve code quality) --> | |
494 | -wcd=657 <!-- define this function inside its class definition (could have improved code quality) --> | |
495 | -wcd=667 <!-- 'va_start' macro will not work without an argument before '...' --> | |
496 | </cppflags-watcom> | |
497 | <cxxflags-mingw> | |
498 | -Wno-ctor-dtor-privacy <!-- only defines a private destructor and has no friends --> | |
499 | </cxxflags-mingw> | |
500 | </template> | |
501 | ||
502 | <!-- for both GUI and wxBase libs/samples: --> | |
503 | <template id="wx_append_base_nomono"> | |
504 | <!-- link against builtin 3rd party libs, if needed: --> | |
505 | <sys-lib>$(LIB_ZLIB)</sys-lib> | |
506 | <sys-lib>$(LIB_ODBC)</sys-lib> | |
507 | <sys-lib>$(LIB_REGEX)</sys-lib> | |
508 | <sys-lib>$(LIB_EXPAT)</sys-lib> | |
509 | ||
510 | <ldlibs>$(EXTRALIBS_FOR_BASE)</ldlibs> | |
511 | ||
512 | <!-- system libraries on os2: --> | |
513 | <if cond="FORMAT!='autoconf' and PLATFORM_OS2=='1'"> | |
514 | <if cond="FORMAT=='watcom'"> | |
515 | <sys-lib>upm32</sys-lib> | |
516 | </if> | |
517 | </if> | |
518 | ||
519 | <!-- system libraries on mgl: --> | |
520 | <if cond="FORMAT=='watcom' and TOOLKIT=='MGL'"> | |
521 | <sys-lib>mgl</sys-lib> | |
522 | <sys-lib>mglcpp</sys-lib> | |
523 | <sys-lib>pm</sys-lib> | |
524 | </if> | |
525 | ||
526 | <!-- system libraries on windows: --> | |
527 | <if cond="FORMAT!='autoconf' and PLATFORM_WIN32=='1'"> | |
528 | <sys-lib>$(UNICOWS_LIB)</sys-lib> | |
529 | <sys-lib>$(GDIPLUS_LIB)</sys-lib> | |
530 | <if cond="FORMAT=='borland'"> | |
531 | <sys-lib>ole2w32</sys-lib> | |
532 | </if> | |
533 | <if cond="FORMAT=='msevc4prj'"> | |
534 | <sys-lib>ole32</sys-lib> | |
535 | <sys-lib>oleaut32</sys-lib> | |
536 | <sys-lib>uuid</sys-lib> | |
537 | <sys-lib>commctrl</sys-lib> | |
538 | <sys-lib>winsock</sys-lib> | |
539 | <sys-lib>wininet</sys-lib> | |
540 | </if> | |
541 | <if cond="FORMAT!='borland' and FORMAT!='msevc4prj'"> | |
542 | <sys-lib>kernel32</sys-lib> | |
543 | <sys-lib>user32</sys-lib> | |
544 | <sys-lib>gdi32</sys-lib> | |
545 | <sys-lib>comdlg32</sys-lib> | |
546 | <sys-lib>winspool</sys-lib> | |
547 | <sys-lib>winmm</sys-lib> | |
548 | <sys-lib>shell32</sys-lib> | |
549 | <sys-lib>comctl32</sys-lib> | |
550 | <sys-lib>ole32</sys-lib> | |
551 | <sys-lib>oleaut32</sys-lib> | |
552 | <sys-lib>uuid</sys-lib> | |
553 | <sys-lib>rpcrt4</sys-lib> | |
554 | <sys-lib>advapi32</sys-lib> | |
555 | <sys-lib>wsock32</sys-lib> | |
556 | </if> | |
557 | <if cond="FORMAT=='borland'"> | |
558 | <sys-lib>oleacc</sys-lib> | |
559 | </if> | |
560 | <if cond="FORMAT!='msevc4prj'"> | |
561 | <sys-lib>odbc32</sys-lib> | |
562 | </if> | |
563 | </if> | |
564 | </template> | |
565 | ||
566 | ||
567 | <!-- for GUI libs/samples: --> | |
568 | <template id="wx_append_nomono" template_append="wx_append_base_nomono"> | |
569 | <sys-lib>$(LIB_TIFF)</sys-lib> | |
570 | <sys-lib>$(LIB_JPEG)</sys-lib> | |
571 | <sys-lib>$(LIB_PNG)</sys-lib> | |
572 | <ldlibs>$(EXTRALIBS_FOR_GUI)</ldlibs> | |
573 | </template> | |
574 | ||
575 | ||
576 | <template id="wx_append_base" template_append="wx_append_base_nomono"> | |
577 | <!-- Always link against the wxWin library in monolithic build: --> | |
578 | <sys-lib>$(WXLIB_MONO)</sys-lib> | |
579 | </template> | |
580 | <template id="wx_append" template_append="wx_append_nomono"> | |
581 | <!-- Always link against the wxWin library in monolithic build: --> | |
582 | <sys-lib>$(WXLIB_MONO)</sys-lib> | |
583 | </template> | |
584 | ||
585 | ||
586 | <set var="WX_DISABLE_PRECOMP_HEADERS" overwrite="0">0</set> | |
587 | ||
588 | <template id="wx_lib_b" template="wx,anylib"> | |
589 | <set var="WXLIBNAME">$(wxwin.mkLibName(wxid))</set> | |
590 | <libname>$(WXLIBNAME)</libname> | |
591 | ||
592 | <if cond="WX_DISABLE_PRECOMP_HEADERS=='0'"> | |
593 | <if cond="FORMAT!='autoconf' and TOOLKIT in ['MSW','MGL','PM','WINCE']"> | |
594 | <sources>$(WXTOPDIR)src/common/dummy.cpp</sources> | |
595 | <precomp-headers-gen> | |
596 | $(WXTOPDIR)src/common/dummy.cpp | |
597 | </precomp-headers-gen> | |
598 | </if> | |
599 | <precomp-headers-location>$(WXTOPDIR)include</precomp-headers-location> | |
600 | <precomp-headers-header>wx/wxprec.h</precomp-headers-header> | |
601 | <precomp-headers>on</precomp-headers> | |
602 | <precomp-headers-file>wxprec_$(id)</precomp-headers-file> | |
603 | <precomp-headers-exclude> | |
604 | src/common/extended.c | |
605 | </precomp-headers-exclude> | |
606 | </if> | |
607 | ||
608 | <if cond="IS_MSVC_PRJ=='1' and BUILDING_LIB=='1'"> | |
609 | <msvc-file-group>Common Sources:src/common/*</msvc-file-group> | |
610 | <msvc-file-group>MSW Sources:src/msw/*</msvc-file-group> | |
611 | <msvc-file-group>Generic Sources:src/generic/*</msvc-file-group> | |
612 | <msvc-file-group>wxUniv Sources:src/univ/*</msvc-file-group> | |
613 | <msvc-file-group>wxHTML Sources:src/html/*</msvc-file-group> | |
614 | <msvc-file-group>Setup Headers:*/setup.h</msvc-file-group> | |
615 | <msvc-file-group>MSW Headers:*wx/msw/*.h</msvc-file-group> | |
616 | <msvc-file-group>Generic Headers:*wx/generic/*.h</msvc-file-group> | |
617 | <msvc-file-group>wxUniv Headers:*wx/univ/*.h</msvc-file-group> | |
618 | <msvc-file-group>wxHTML Headers:*wx/html/*.h</msvc-file-group> | |
619 | <msvc-file-group>Common Headers:*wx/*.h</msvc-file-group> | |
620 | </if> | |
621 | </template> | |
622 | ||
623 | <if cond="FORMAT=='autoconf'"> | |
624 | <set var="RCDEFDIR"> | |
625 | <if cond="TOOLKIT=='MSW'"> | |
626 | $(LIBDIRNAME)/wx/include/$(TOOLCHAIN_FULLNAME) | |
627 | </if> | |
628 | </set> | |
629 | </if> | |
630 | ||
631 | <template id="wx_dll_b" template="wx_lib_b"> | |
632 | <set var="WXDLLNAME">$(wxwin.mkDllName(wxid))</set> | |
633 | <dllname>$(WXDLLNAME)</dllname> | |
634 | <version>$(WX_VERSION)</version> | |
635 | <so_version>$(WXSOVERSION)</so_version> | |
636 | ||
637 | <!-- FIXME: until libtool scheme is implemented in bakefile --> | |
638 | <ldflags cond="FORMAT=='autoconf'">$(WXMACVERSION_CMD)</ldflags> | |
639 | ||
640 | <!-- version info resources: --> | |
641 | <res-define>WXDLLNAME=$(WXDLLNAME)</res-define> | |
642 | <if cond="FORMAT=='autoconf'"> | |
643 | <res-include>$(RCDEFDIR)</res-include> | |
644 | <res-include>$(TOP_SRCDIR)include</res-include> | |
645 | </if> | |
646 | <win32-res>$(WXTOPDIR)src/msw/version.rc</win32-res> | |
647 | </template> | |
648 | ||
649 | <template id="wx_3rdparty_dependencies_gui" cond="USE_GUI=='1'"> | |
650 | <depends>wxtiff</depends> | |
651 | <depends>wxjpeg</depends> | |
652 | <depends>wxpng</depends> | |
653 | </template> | |
654 | ||
655 | <template id="wx_3rdparty_dependencies" | |
656 | template="wx_3rdparty_dependencies_gui"> | |
657 | <depends>wxexpat</depends> | |
658 | <depends>wxzlib</depends> | |
659 | <depends cond="FORMAT=='autoconf'">wxodbc</depends> | |
660 | <depends>wxregex</depends> | |
661 | </template> | |
662 | ||
663 | <template id="wx_3rdparty_includes_gui" cond="USE_GUI=='1'"> | |
664 | <if cond="FORMAT=='watcom' and TOOLKIT=='MGL'"> | |
665 | <include>$(DOLLAR)(%SCITECH)/include</include> | |
666 | </if> | |
667 | <include>$(INC_TIFF)</include> | |
668 | <include>$(INC_JPEG)</include> | |
669 | <include>$(INC_PNG)</include> | |
670 | </template> | |
671 | ||
672 | <template id="wx_3rdparty_includes" | |
673 | template="wx_3rdparty_includes_gui"> | |
674 | <include>$(INC_ZLIB)</include> | |
675 | <include>$(INC_ODBC)</include> | |
676 | <include>$(INC_REGEX)</include> | |
677 | <include>$(INC_EXPAT)</include> | |
678 | </template> | |
679 | ||
680 | <template id="wx_lib" | |
681 | template="wx_lib_b,wx_3rdparty_includes,msvc_setup_h"/> | |
682 | <template id="wx_base_lib" | |
683 | template="wx_lib_b,wx_3rdparty_includes,msvc_setup_h"> | |
684 | <define>wxUSE_GUI=0</define> | |
685 | </template> | |
686 | ||
687 | <template id="wx_dll" | |
688 | template="wx_dll_b,wx_3rdparty_dependencies,wx_3rdparty_includes" | |
689 | template_append="msvc_setup_h,wx_append_nomono"/> | |
690 | <template id="wx_base_dll" | |
691 | template="wx_dll_b,wx_3rdparty_dependencies,wx_3rdparty_includes" | |
692 | template_append="msvc_setup_h,wx_append_base_nomono"> | |
693 | <define>wxUSE_GUI=0</define> | |
694 | </template> | |
695 | ||
696 | <!-- =============================================================== --> | |
697 | <!-- Templates for building wxWidgets plugins: --> | |
698 | <!-- =============================================================== --> | |
699 | ||
700 | <if cond="WX_STABLE_BRANCH=='1'"> | |
701 | <set var="PLUGIN_VERSION0"> | |
702 | <if cond="PLATFORM_UNIX=='1'">$(WX_RELEASE)</if> | |
703 | <if cond="PLATFORM_UNIX=='0'">$(WX_RELEASE_NODOT)</if> | |
704 | </set> | |
705 | </if> | |
706 | <if cond="WX_STABLE_BRANCH=='0'"> | |
707 | <set var="PLUGIN_VERSION0"> | |
708 | <if cond="PLATFORM_UNIX=='1'">$(WX_VERSION)</if> | |
709 | <if cond="PLATFORM_UNIX=='0'">$(WX_VERSION_NODOT)</if> | |
710 | </set> | |
711 | </if> | |
712 | <set var="PLUGVERDELIM"> | |
713 | <if cond="PLATFORM_UNIX=='1'">-</if> | |
714 | <if cond="PLATFORM_UNIX=='0'"></if> | |
715 | </set> | |
716 | <set var="PLUGIN_VERSION">$(PLUGVERDELIM)$(PLUGIN_VERSION0)</set> | |
717 | ||
718 | <set var="PLUGINSUFFIX"> | |
719 | <if cond="UNICODE=='0' and BUILD=='release'"></if> | |
720 | <if cond="UNICODE=='0' and BUILD=='debug'">d</if> | |
721 | <if cond="UNICODE=='1' and BUILD=='release'">u</if> | |
722 | <if cond="UNICODE=='1' and BUILD=='debug'">ud</if> | |
723 | </set> | |
724 | ||
725 | <set var="PLUGINS_INST_DIR" make_var="1"> | |
726 | $(LIBDIR)/wx/$(PLUGIN_VERSION0) | |
727 | </set> | |
728 | ||
729 | <define-rule name="wx-base-plugin" extends="module"> | |
730 | <template> | |
731 | <dllname> | |
732 | $(id)$(PLUGINSUFFIX)$(PLUGIN_VERSION)$(WXCOMPILER) | |
733 | </dllname> | |
734 | <define>WXUSINGDLL</define> | |
735 | <define>wxUSE_GUI=0</define> | |
736 | <install-to>$(PLUGINS_INST_DIR)</install-to> | |
737 | </template> | |
738 | </define-rule> | |
739 | ||
740 | <define-rule name="wx-gui-plugin" extends="module"> | |
741 | <template template="wx"> | |
742 | <dllname> | |
743 | $(id)_$(PORTNAME)$(WXUNIVNAME)$(PLUGINSUFFIX)$(PLUGIN_VERSION)$(WXCOMPILER) | |
744 | </dllname> | |
745 | <define>WXUSINGDLL</define> | |
746 | <install-to>$(PLUGINS_INST_DIR)</install-to> | |
747 | </template> | |
748 | </define-rule> | |
749 | ||
750 | <!-- =============================================================== --> | |
751 | <!-- Support for wxWidgets samples and contrib: --> | |
752 | <!-- =============================================================== --> | |
753 | ||
754 | <!-- Link against one wxWin library. Value must be literal! --> | |
755 | <define-tag name="wx-lib" rules="exe,dll,module"> | |
756 | <sys-lib>$(wxwin.libToLink(value))</sys-lib> | |
757 | <ldlibs>$(wxwin.extraLdflags(value))</ldlibs> | |
758 | <if cond="IS_MSVC_PRJ=='1' and MONOLITHIC=='0'"> | |
759 | <depends-on-dsp>$(wxwin.makeDspDependency(value))</depends-on-dsp> | |
760 | </if> | |
761 | </define-tag> | |
762 | ||
763 | ||
764 | <!-- A hack to keep autoconf happy (we pass CPPFLAGS that contain | |
765 | {top_srcdir} from configure, poor bakefile can't know that | |
766 | and won't output top_srcdir = @top_srcdir@ line): --> | |
767 | <set var="VARS_DONT_ELIMINATE" append="1">top_srcdir</set> | |
768 | ||
769 | ||
770 | </makefile> |