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