fixed bug: option's default value must be among the list of allowed values -- removin...
[wxWidgets.git] / build / bakefiles / config.bkl
1 <?xml version="1.0" ?>
2 <!-- $Id$ -->
3
4 <makefile>
5
6     <set var="BUILDING_LIB" overwrite="0">0</set>
7
8     <set var="CPP_DEFAULT_VALUE">
9         <if cond="FORMAT=='borland'">
10             cpp32 -Sr -oCON
11         </if>
12         <if cond="FORMAT=='mingw'">
13             $(DOLLAR)(CC) -E
14         </if>
15         <if cond="FORMAT=='msvc'">
16             $(DOLLAR)(CC) /EP /nologo
17         </if>
18         <if cond="FORMAT=='watcom'">
19             $(DOLLAR)(CC) -p
20         </if>
21     </set>
22     <option name="CPP">
23         <default-value>
24             $(CPP_DEFAULT_VALUE)
25         </default-value>
26         <description>
27             The C preprocessor
28         </description>
29     </option>
30
31     <option name="SHARED">
32         <values>0,1</values>
33         <values-description>,DLL</values-description>
34         <default-value>0</default-value>
35         <description>
36             What type of library to build?
37         </description>
38     </option>
39
40     <option name="WXUNIV">
41         <values>0,1</values>
42         <values-description>,Universal</values-description>
43         <default-value>0</default-value>
44         <description>
45             Build wxUniversal instead of native port?
46         </description>
47     </option>
48
49     <option name="UNICODE">
50         <values>0,1</values>
51         <values-description>,Unicode</values-description>
52         <default-value>0</default-value>
53         <description>
54             Compile Unicode build of wxWidgets?
55         </description>
56     </option>
57
58     <if cond="FORMAT!='autoconf' and FORMAT!='watcom'">
59         <option name="MSLU">
60             <values>0,1</values>
61             <default-value>0</default-value>
62             <description>
63                 Use MSLU library when building Unicode version.
64             </description>
65         </option>
66     </if>
67     <if cond="FORMAT=='autoconf' or FORMAT=='watcom'">
68         <set var="MSLU">0</set>
69     </if>
70
71     <option name="BUILD">
72         <values>debug,release</values>
73         <values-description>Debug,Release</values-description>
74         <default-value>debug</default-value>
75         <description>
76             Type of compiled binaries
77         </description>
78     </option>
79
80     <if cond="FORMAT=='msvc'">
81         <option name="TARGET_CPU">
82             <default-value>$(DOLLAR)(CPU)</default-value>
83             <description>
84 The target processor architecture must be specified when it is not X86.
85 This does not affect the compiler output, so you still need to make sure
86 your environment is set up appropriately with the correct compiler in the
87 PATH. Rather it affects some options passed to some of the common build
88 utilities such as the resource compiler and the linker.
89
90 Accepted values: AMD64, IA64.
91             </description>
92         </option>
93     </if>
94     <if cond="FORMAT!='msvc'">
95         <set var="TARGET_CPU"/>
96     </if>
97
98     <!-- FIXME: restore this once bakefile is fixed to not use
99                 /Gm /GZ (incompatible with /O2) w/ debug-info -->
100     <set var="DEBUG_INFO_DEFAULT">
101         <if cond="FORMAT in ['msvc','msvc6prj','msevc4prj']">1</if>
102         <if cond="FORMAT not in ['msvc','msvc6prj','msevc4prj']">default</if>
103     </set>
104     -->
105     <set var="DEBUG_INFO_DEFAULT">default</set>
106
107     <option name="DEBUG_INFO">
108         <values>0,1,default</values>
109         <default-value>$(DEBUG_INFO_DEFAULT)</default-value>
110         <description>
111 Should debugging info be included in the executables? The default value
112 "default" means that debug info will be included if BUILD=debug
113 and not included if BUILD=release.
114         </description>
115     </option>
116
117     <option name="DEBUG_FLAG">
118         <values>0,1,default</values>
119         <default-value>default</default-value>
120         <description>
121 Should __WXDEBUG__ be defined? The default value "default" means that it will
122 be defined if BUILD=debug and not defined if BUILD=release.
123         </description>
124     </option>
125
126     <if cond="FORMAT=='msvc'">
127         <option name="DEBUG_RUNTIME_LIBS">
128             <values>0,1,default</values>
129             <default-value>default</default-value>
130             <description>
131 Should link against debug RTL (msvcrtd.dll) or release (msvcrt.dll)?
132 Acts according to BUILD by default.
133             </description>
134         </option>
135     </if>
136     <if cond="FORMAT!='msvc'">
137         <set var="DEBUG_RUNTIME_LIBS">default</set>
138     </if>
139
140     <set var="MONOLITHIC_DEFAULT">
141         <if cond="FORMAT=='watcom'">1</if>
142         <if cond="FORMAT!='watcom'">0</if>
143     </set>
144     <option name="MONOLITHIC">
145         <values>0,1</values>
146         <values-description>Multilib,Monolithic</values-description>
147         <default-value>$(MONOLITHIC_DEFAULT)</default-value>
148         <description>
149             Multiple libraries or single huge monolithic one?
150         </description>
151     </option>
152
153     <if cond="FORMAT=='autoconf'"> <!-- FIXME - temporary -->
154         <option name="USE_PLUGINS">
155             <values>0,1</values>
156             <default-value>1</default-value>
157             <description>
158                 Build parts of the library as dynamically loadable plugins
159                 (only supported in multilib build)?
160             </description>
161         </option>
162     </if>
163     <if cond="FORMAT!='autoconf'">
164         <set var="USE_PLUGINS">0</set> <!-- FIXME - temporary -->
165     </if>
166
167     <option name="USE_GUI">
168         <values>0,1</values>
169         <values-description>Base,GUI</values-description>
170         <default-value>1</default-value>
171         <description>
172             Build GUI libraries?
173         </description>
174     </option>
175
176     <option name="USE_HTML">
177         <values>0,1</values>
178         <default-value>1</default-value>
179         <description>
180             Build wxHTML library (USE_GUI must be 1)?
181         </description>
182     </option>
183
184     <option name="USE_MEDIA">
185         <values>0,1</values>
186         <default-value>1</default-value>
187         <description>
188             Build multimedia library (USE_GUI must be 1)?
189         </description>
190     </option>
191
192     <option name="USE_XRC">
193         <values>0,1</values>
194         <default-value>1</default-value>
195         <description>
196             Build wxXRC library (USE_GUI must be 1)?
197         </description>
198     </option>
199
200     <option name="USE_OPENGL">
201         <values>0,1</values>
202         <default-value>0</default-value>
203         <description>
204             Build OpenGL canvas library (USE_GUI must be 1)?
205         </description>
206     </option>
207
208     <option name="USE_ODBC">
209         <values>0,1</values>
210         <default-value>0</default-value>
211         <description>
212             Build ODBC database classes (USE_GUI must be 1)?
213         </description>
214     </option>
215
216     <!-- currently only VC++ can compile wxDebugReport which is in QA lib -->
217     <set var="USE_QA_DEFAULT">
218         <if cond="FORMAT in ['msvc','msvc6prj']">1</if>
219         <if cond="FORMAT not in ['msvc','msvc6prj']">0</if>
220     </set>
221     <option name="USE_QA">
222         <values>0,1</values>
223         <default-value>$(USE_QA_DEFAULT)</default-value>
224         <description>
225             Build quality assurance classes library (USE_GUI must be 1)?
226         </description>
227     </option>
228
229     <option name="USE_EXCEPTIONS">
230         <values>0,1</values>
231         <default-value>1</default-value>
232         <description>
233             Enable exceptions in compiled code.
234         </description>
235     </option>
236
237     <option name="USE_RTTI">
238         <values>0,1</values>
239         <default-value>1</default-value>
240         <description>
241             Enable run-time type information (RTTI) in compiled code.
242         </description>
243     </option>
244
245     <option name="USE_THREADS">
246         <values>0,1</values>
247         <default-value>1</default-value>
248         <description>
249             Enable threading in compiled code.
250         </description>
251     </option>
252
253     <option name="OFFICIAL_BUILD">
254         <values>0,1</values>
255         <default-value>0</default-value>
256         <description>
257             Is this official build by wxWidgets developers?
258         </description>
259     </option>
260     <option name="VENDOR">
261         <default-value>custom</default-value>
262         <description>
263             Use this to name your customized DLLs differently
264         </description>
265     </option>
266     <!-- These basically do what vendor does in the places it didn't. -->
267     <!-- They should all be unified under some suitable descriptor    -->
268     <option name="WX_FLAVOUR">
269         <default-value></default-value>
270     </option>
271     <option name="WX_LIB_FLAVOUR">
272         <default-value></default-value>
273     </option>
274
275     <option name="CFG">
276         <default-value></default-value>
277         <description>
278 Name of your custom configuration. This affects directory
279 where object files are stored as well as the location of
280 compiled .lib files and setup.h under the lib/ toplevel directory.
281         </description>
282     </option>
283
284     <!-- unit tests support: -->
285     <option name="CPPUNIT_CFLAGS">
286         <default-value></default-value>
287         <description>
288 Compiler flags needed to compile test suite in tests directory. If you want
289 to run the tests, set it so that the compiler can find CppUnit headers.
290         </description>
291     </option>
292
293     <option name="CPPUNIT_LIBS">
294         <default-value></default-value>
295         <description>
296 Linker flags needed to link test suite in tests directory. If you want
297 to run the tests, include CppUnit library here.
298         </description>
299     </option>
300
301
302     <!-- ================================================================== -->
303     <!--                             Autoconf                               -->
304     <!-- ================================================================== -->
305
306     <if cond="FORMAT=='autoconf'">
307         <option name="DEREZ"/>
308         <option name="TOOLKIT"/>
309         <option name="TOOLKIT_LOWERCASE"/>
310         <option name="TOOLKIT_VERSION"/>
311         <option name="TOOLCHAIN_NAME"/>
312         <option name="TOOLCHAIN_FULLNAME"/>
313         <option name="EXTRALIBS"/>
314         <option name="EXTRALIBS_XML"/>
315         <option name="EXTRALIBS_HTML"/>
316         <option name="EXTRALIBS_ODBC"/>
317         <option name="EXTRALIBS_GUI"/>
318         <option name="EXTRALIBS_OPENGL"/>
319         <option name="EXTRALIBS_SDL"/>
320         <option name="EXTRALIBS_GNOMEPRINT"/>
321         <option name="HOST_SUFFIX"/>
322         <option name="SAMPLES_RPATH_FLAG"/>
323         <option name="SAMPLES_RPATH_POSTLINK"/>
324
325         <set var="TOP_SRCDIR">$(top_srcdir)/</set>
326         <set var="RUNTIME_LIBS">dynamic</set>
327         <set var="WXTOPDIR"/> <!-- to be overriden on bakefile cmd line -->
328
329         <option name="WITH_PLUGIN_SDL">
330             <values>0,1</values>
331         </option>
332     </if>
333
334
335     <!-- ================================================================== -->
336     <!--                     windows/dos/os2 compilers                      -->
337     <!-- ================================================================== -->
338
339     <if cond="FORMAT!='autoconf'">
340         <option name="RUNTIME_LIBS">
341             <values>dynamic,static</values>
342             <default-value>dynamic</default-value>
343             <description>
344 Version of C runtime library to use. You can change this to
345 static if SHARED=0, but it is highly recommended to not do
346 it if SHARED=1 unless you know what you are doing.
347             </description>
348         </option>
349
350         <set var="WXTOPDIR"/> <!-- to be overriden on bakefile cmd line -->
351
352         <set var="TOOLKIT" overwrite="0">
353             <if cond="FORMAT=='msevc4prj'">WINCE</if>
354             <if cond="FORMAT!='msevc4prj' and PLATFORM_WIN32=='1'">MSW</if>
355             <if cond="PLATFORM_MSDOS=='1'">MGL</if>
356             <if cond="PLATFORM_OS2=='1'">PM</if>
357         </set>
358         <set var="TOOLKIT_LOWERCASE">$(TOOLKIT.lower())</set>
359         <set var="TOOLKIT_VERSION"/>
360         <set var="HOST_SUFFIX"/>
361         <set var="EXTRACFLAGS"/>
362         <set var="EXTRALIBS"/>
363         <set var="EXTRALIBS_XML"/>
364         <set var="EXTRALIBS_HTML"/>
365         <set var="EXTRALIBS_ODBC"/>
366         <set var="EXTRALIBS_GUI"/>
367         <set var="EXTRALIBS_OPENGL">
368             <if cond="COMPILER=='wat' and TOOLKIT=='MSW'">opengl32.lib glu32.lib</if>
369             <if cond="COMPILER in ['vc','evc']">opengl32.lib glu32.lib</if>
370             <if cond="COMPILER=='gcc'">-lopengl32 -lglu32</if>
371         </set>
372         <set var="EXTRALIBS_SDL"/>
373         <set var="EXTRALIBS_GNOMEPRINT"/>
374
375         <set var="WITH_PLUGIN_SDL">0</set>
376
377         <set var="SRCDIR">
378             <if cond="BUILDING_LIB=='1'">..$(DIRSEP)..</if>
379             <if cond="BUILDING_LIB=='0'">.</if>
380         </set>
381         <set var="TOP_SRCDIR">$(SRCDIR)/$(WXTOPDIR)</set>
382     </if>
383
384     <if cond="FORMAT=='mingw'">
385         <option name="GCC_VERSION">
386             <values>3,2.95</values>
387             <default-value>3</default-value>
388             <description>
389 Set the version of your Mingw installation here.
390     "3" ...... this is for Mingw 2.0 or newer (comes with gcc3)
391     "2.95" ... for Mingw 1.1 or any of the older versions
392             </description>
393         </option>
394         <set var="GCCFLAGS">
395             <if cond="GCC_VERSION=='2.95'">-fvtable-thunks</if>
396         </set>
397         <set var="EXTRACFLAGS">$(GCCFLAGS) -DHAVE_W32API_H</set>
398     </if>
399
400     <if cond="FORMAT=='cbuilderx'">
401         <set var="EXTRACFLAGS">
402             <if cond="COMPILER=='gcc'">-DHAVE_W32API_H</if>
403         </set>
404     </if>
405
406
407     <!-- ================================================================== -->
408     <!--            Project files - hardcode some defaults                  -->
409     <!-- ================================================================== -->
410
411     <if cond="FORMAT_SUPPORTS_CONDITIONS=='0'">
412         <set var="RUNTIME_LIBS">dynamic</set>
413         <set var="OFFICIAL_BUILD">0</set>
414         <set var="USE_HTML">1</set>
415          <set var="USE_MEDIA">1</set>
416         <set var="USE_XRC">1</set>
417         <set var="USE_OPENGL">1</set>
418         <set var="USE_ODBC">1</set>
419         <set var="USE_QA">1</set>
420         <set var="MONOLITHIC">0</set>
421         <set var="USE_GUI">1</set>
422         <set var="USE_EXCEPTIONS">1</set>
423         <set var="USE_RTTI">1</set>
424         <set var="USE_THREADS">1</set>
425         <set var="DEBUG_INFO">$(DEBUG_INFO_DEFAULT)</set>
426         <set var="DEBUG_FLAG">default</set>
427         <set var="MSLU">0</set>
428     </if>
429
430
431     <!-- FIXME:
432          C++BuilderX supports only wxMSW, monolithic (sic!) static build
433          and the project can't be put into build/msw and store objects in
434          build/msw/something. This *must* be fixed! -->
435     <if cond="FORMAT=='cbuilderx'">
436         <set var="WXUNIV">0</set>
437         <set var="MONOLITHIC">1</set>
438         <set var="SRCDIR">.</set>
439         <set var="TOP_SRCDIR">$(SRCDIR)/$(WXTOPDIR)</set>
440         <set var="SHARED">0</set>
441     </if>
442
443
444     <!-- DigitalMars make is braindead, it doesn't have conditional
445          processing: -->
446     <if cond="FORMAT=='dmars'">
447         <set var="RUNTIME_LIBS">static</set>
448         <set var="BUILD">debug</set>
449         <set var="SHARED">0</set>
450         <set var="WXUNIV">0</set>
451         <set var="UNICODE">0</set>
452         <!-- Free version does not distribute OpenGL,
453              in commercial distribution better use dmars_smake format -->
454         <set var="USE_OPENGL">0</set>
455     </if>
456
457     <!-- No need for wxUniv on embedded devices (yet): -->
458     <if cond="FORMAT=='msevc4prj'">
459         <set var="WXUNIV">0</set>
460         <set var="UNICODE">1</set>
461         <!-- Uploading debug reports from PDAs seems impractical -->
462         <set var="USE_QA">0</set>
463         <set var="MONOLITHIC">1</set> <!-- sic! -->
464         <!-- RTTI and exceptions need separate cccrtti.lib with eVC4 -->
465         <set var="USE_RTTI">0</set>
466         <set var="USE_EXCEPTIONS">0</set>
467     </if>
468
469     <!-- Need for wxUniv within wxMGL: -->
470     <if cond="FORMAT!='autoconf' and TOOLKIT=='MGL'">
471         <set var="WXUNIV">1</set>
472         <set var="USE_THREADS">0</set>
473         <set var="RUNTIME_LIBS">static</set>
474     </if>
475
476 </makefile>