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