moving XRC to the core
[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     <option name="SHARED">
9         <values>0,1</values>
10         <values-description>,DLL</values-description>
11         <default-value>0</default-value>
12         <description>
13             What type of library to build?
14         </description>
15     </option>
16     
17     <option name="WXUNIV">
18         <values>0,1</values>
19         <values-description>,Universal</values-description>
20         <default-value>0</default-value>
21         <description>
22             Build wxUniversal instead of native port?
23         </description>
24     </option>
25
26     <option name="UNICODE">
27         <values>0,1</values>
28         <values-description>,Unicode</values-description>
29         <default-value>0</default-value>        
30         <description>
31             Compile Unicode build of wxWidgets?
32         </description>
33     </option>
34
35     <if cond="FORMAT!='autoconf' and FORMAT!='watcom'">
36         <option name="MSLU">
37             <values>0,1</values>
38             <default-value>0</default-value>        
39             <description>
40                 Use MSLU library when building Unicode version.
41             </description>
42         </option>
43     </if>
44     <if cond="FORMAT=='autoconf' or FORMAT=='watcom'">
45         <set var="MSLU">0</set>
46     </if>
47
48     <option name="BUILD">
49         <values>debug,release</values>
50         <values-description>Debug,Release</values-description>
51         <default-value>debug</default-value>
52         <description>
53             Type of compiled binaries
54         </description>
55     </option>
56     
57     <option name="DEBUG_INFO">
58         <values>0,1,default</values>
59         <default-value>default</default-value>
60         <description>
61 Should debugging info be included in the executables? The default value
62 "default" means that debug info will be included if BUILD=debug
63 and not included if BUILD=release.
64         </description>
65     </option>
66     
67     <option name="DEBUG_FLAG">
68         <values>0,1,default</values>
69         <default-value>default</default-value>
70         <description>
71 Should __WXDEBUG__ be defined? The default value "default" means that it will
72 be defined if BUILD=debug and not defined if BUILD=release.
73         </description>
74     </option>
75
76     <if cond="FORMAT=='msvc'">
77         <option name="DEBUG_RUNTIME_LIBS">
78             <values>0,1,default</values>
79             <default-value>default</default-value>
80             <description>
81 Should link against debug RTL (msvcrtd.dll) or release (msvcrt.dll)?
82 Acts according to DEBUG_INFO by default.
83             </description>
84         </option>
85     </if>
86     <if cond="FORMAT!='msvc'">
87         <set var="DEBUG_RUNTIME_LIBS">default</set>
88     </if>
89
90     <set var="MONOLITHIC_DEFAULT">
91         <if cond="FORMAT=='watcom'">1</if>
92         <if cond="FORMAT!='watcom'">0</if>
93     </set>
94     <option name="MONOLITHIC">
95         <values>0,1</values>
96         <values-description>Multilib,Monolithic</values-description>
97         <default-value>$(MONOLITHIC_DEFAULT)</default-value>
98         <description>
99             Multiple libraries or single huge monolithic one?
100         </description>
101     </option>
102     
103     <if cond="FORMAT=='autoconf'"> <!-- FIXME - temporary -->
104         <option name="USE_PLUGINS">
105             <values>0,1</values>
106             <default-value>1</default-value>
107             <description>
108                 Build parts of the library as dynamically loadable plugins
109                 (only supported in multilib build)?
110             </description>
111         </option>
112     </if>
113     <if cond="FORMAT!='autoconf'">
114         <set var="USE_PLUGINS">0</set> <!-- FIXME - temporary -->
115     </if>
116     
117     <option name="USE_GUI">
118         <values>0,1</values>
119         <values-description>Base,GUI</values-description>
120         <default-value>1</default-value>
121         <description>
122             Build GUI libraries?
123         </description>
124     </option>
125     
126     <option name="USE_HTML">
127         <values>0,1</values>
128         <default-value>1</default-value>
129         <description>
130             Build wxHTML library (USE_GUI must be 1)?
131         </description>
132     </option>
133     
134     <option name="USE_XRC">
135         <values>0,1</values>
136         <default-value>1</default-value>
137         <description>
138             Build wxXRC library (USE_GUI must be 1)?
139         </description>
140     </option>
141     
142     <option name="USE_OPENGL">
143         <values>0,1</values>
144         <default-value>0</default-value>
145         <description>
146             Build OpenGL canvas library (USE_GUI must be 1)?
147         </description>
148     </option>
149     
150     <option name="USE_ODBC">
151         <values>0,1</values>
152         <default-value>0</default-value>
153         <description>
154             Build ODBC database classes (USE_GUI must be 1)?
155         </description>
156     </option>
157     
158     <option name="USE_EXCEPTIONS">
159         <values>0,1</values>
160         <default-value>1</default-value>
161         <description>
162             Enable exceptions in compiled code.
163         </description>
164     </option>
165     
166     <option name="OFFICIAL_BUILD">
167         <values>0,1</values>
168         <default-value>0</default-value>
169         <description>
170             Is this official build by wxWidgets developers?
171         </description>
172     </option>
173     <option name="VENDOR">
174         <default-value>custom</default-value>
175         <description>
176             Use this to name your customized DLLs differently
177         </description>
178     </option>
179
180     <option name="CFG">
181         <default-value></default-value>
182         <description>
183 Name of your custom configuration. This affects directory
184 where object files are stored as well as the location of
185 compiled .lib files and setup.h under the lib/ toplevel directory.
186         </description>
187     </option>
188
189     <!-- unit tests support: -->
190     <option name="CPPUNIT_CFLAGS">
191         <default-value></default-value>
192         <description>
193 Compiler flags needed to compile test suite in tests directory. If you want
194 to run the tests, set it so that the compiler can find CppUnit headers.
195         </description>
196     </option>
197     
198     <option name="CPPUNIT_LIBS">
199         <default-value></default-value>
200         <description>
201 Linker flags needed to link test suite in tests directory. If you want
202 to run the tests, include CppUnit library here.
203         </description>
204     </option>
205     
206     
207     <!-- ================================================================== -->
208     <!--                             Autoconf                               -->
209     <!-- ================================================================== -->
210     
211     <if cond="FORMAT=='autoconf'"> 
212         <option name="DEREZ"/>
213         <option name="TOOLKIT"/>
214         <option name="TOOLKIT_LOWERCASE"/>
215         <option name="TOOLKIT_VERSION"/>
216         <option name="TOOLCHAIN_NAME"/>
217         <option name="EXTRALIBS"/>
218         <option name="EXTRALIBS_XML"/>
219         <option name="EXTRALIBS_HTML"/>
220         <option name="EXTRALIBS_ODBC"/>
221         <option name="EXTRALIBS_GUI"/>
222         <option name="EXTRALIBS_OPENGL"/>
223         <option name="EXTRALIBS_SDL"/>
224         <option name="HOST_SUFFIX"/>
225         <option name="SAMPLES_RPATH_FLAG"/>
226         <option name="SAMPLES_RPATH_POSTLINK"/>
227         
228         <set var="TOP_SRCDIR">$(top_srcdir)/</set>
229         <set var="RUNTIME_LIBS">dynamic</set>
230         <set var="WXTOPDIR"/> <!-- to be overriden on bakefile cmd line -->
231     
232         <option name="WITH_PLUGIN_SDL">
233             <values>0,1</values>
234         </option>
235     </if>
236
237     
238     <!-- ================================================================== -->
239     <!--                         windows compilers                          -->
240     <!-- ================================================================== -->
241
242     <if cond="FORMAT!='autoconf'">
243         <option name="RUNTIME_LIBS">
244             <values>dynamic,static</values>
245             <default-value>dynamic</default-value>
246             <description>
247 Version of C runtime library to use. You can change this to
248 static if SHARED=0, but it is highly recommended to not do
249 it if SHARED=1 unless you know what you are doing.
250             </description>
251         </option>
252         
253         <set var="WXTOPDIR"/> <!-- to be overriden on bakefile cmd line -->
254
255         <set var="TOOLKIT" overwrite="0">
256             <if cond="FORMAT!='msevc4prj'">MSW</if>
257             <if cond="FORMAT=='msevc4prj'">WINCE</if>
258         </set>
259         <set var="TOOLKIT_LOWERCASE">$(TOOLKIT.lower())</set>
260         <set var="TOOLKIT_VERSION"/>
261         <set var="HOST_SUFFIX"/>
262         <set var="EXTRACFLAGS"/>
263         <set var="EXTRALIBS"/>
264         <set var="EXTRALIBS_XML"/>
265         <set var="EXTRALIBS_HTML"/>
266         <set var="EXTRALIBS_ODBC"/>
267         <set var="EXTRALIBS_GUI"/>
268         <set var="EXTRALIBS_OPENGL">
269             <if cond="COMPILER=='wat'">opengl32.lib glu32.lib</if>
270             <if cond="COMPILER in ['vc','evc']">opengl32.lib glu32.lib</if>
271             <if cond="COMPILER=='gcc'">-lopengl32 -lglu32</if>
272         </set>
273         <set var="EXTRALIBS_SDL"/>
274
275         <set var="WITH_PLUGIN_SDL">0</set>
276
277         <set var="SRCDIR">
278             <if cond="BUILDING_LIB=='1'">..$(DIRSEP)..</if>
279             <if cond="BUILDING_LIB=='0'">.</if>
280         </set>
281         <set var="TOP_SRCDIR">$(SRCDIR)/$(WXTOPDIR)</set>
282     </if>
283     
284     <if cond="FORMAT=='mingw'">
285         <option name="GCC_VERSION">
286             <values>3,2.95</values>
287             <default-value>3</default-value>
288             <description>
289 Set the version of your Mingw installation here.
290     "3" ...... this is for Mingw 2.0 or newer (comes with gcc3)
291     "2.95" ... for Mingw 1.1 or any of the older versions
292             </description>
293         </option>
294         <set var="GCCFLAGS">
295             <if cond="GCC_VERSION=='2.95'">-fvtable-thunks</if>
296         </set>
297         <set var="EXTRACFLAGS">$(GCCFLAGS) -DHAVE_W32API_H</set>
298     </if>
299
300     <if cond="FORMAT=='cbuilderx'">
301         <set var="EXTRACFLAGS">
302             <if cond="COMPILER=='gcc'">-DHAVE_W32API_H</if>
303         </set>
304     </if>
305
306
307     <!-- ================================================================== -->
308     <!--            Project files - hardcode some defaults                  -->
309     <!-- ================================================================== -->
310
311     <if cond="FORMAT_SUPPORTS_CONDITIONS=='0'">
312         <set var="RUNTIME_LIBS">dynamic</set>
313         <set var="OFFICIAL_BUILD">0</set>
314         <set var="USE_HTML">1</set>
315         <set var="USE_XRC">1</set>
316         <set var="USE_OPENGL">1</set>
317         <set var="USE_ODBC">1</set>
318         <set var="MONOLITHIC">0</set>
319         <set var="USE_GUI">1</set>
320         <set var="USE_EXCEPTIONS">1</set>
321         <set var="DEBUG_INFO">default</set>
322         <set var="DEBUG_FLAG">default</set>
323         <set var="MSLU">0</set>
324     </if>
325
326
327     <!-- FIXME:
328          C++BuilderX supports only wxMSW, monolithic (sic!) static build
329          and the project can't be put into build/msw and store objects in
330          build/msw/something. This *must* be fixed! -->
331     <if cond="FORMAT=='cbuilderx'">
332         <set var="WXUNIV">0</set>
333         <set var="MONOLITHIC">1</set>
334         <set var="SRCDIR">.</set>
335         <set var="TOP_SRCDIR">$(SRCDIR)/$(WXTOPDIR)</set>
336         <set var="SHARED">0</set>
337     </if>
338
339
340     <!-- DigitalMars make is braindead, it doesn't have conditional
341          processing: -->
342     <if cond="FORMAT=='dmars'">
343         <set var="RUNTIME_LIBS">static</set>
344         <set var="BUILD">debug</set>
345         <set var="SHARED">0</set>
346         <set var="WXUNIV">0</set>
347         <set var="UNICODE">0</set>
348     </if>
349
350     <!-- No need for wxUniv on embedded devices (yet): -->
351     <if cond="FORMAT=='msevc4prj'">
352         <set var="WXUNIV">0</set>
353         <set var="UNICODE">1</set>
354         <set var="MONOLITHIC">1</set> <!-- sic! -->
355     </if>
356
357 </makefile>