disable multilib by default for Watcom
[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 wxWindows?
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     <option name="USE_GUI">
104         <values>0,1</values>
105         <values-description>Base,GUI</values-description>
106         <default-value>1</default-value>
107         <description>
108             Build GUI libraries?
109         </description>
110     </option>
111     
112     <option name="USE_HTML">
113         <values>0,1</values>
114         <default-value>1</default-value>
115         <description>
116             Build wxHTML library (USE_GUI must be 1)?
117         </description>
118     </option>
119     
120     <option name="USE_OPENGL">
121         <values>0,1</values>
122         <default-value>0</default-value>
123         <description>
124             Build OpenGL canvas library (USE_GUI must be 1)?
125         </description>
126     </option>
127     
128     <option name="USE_ODBC">
129         <values>0,1</values>
130         <default-value>0</default-value>
131         <description>
132             Build ODBC database classes (USE_GUI must be 1)?
133         </description>
134     </option>
135     
136     <option name="USE_EXCEPTIONS">
137         <values>0,1</values>
138         <default-value>1</default-value>
139         <description>
140             Enable exceptions in compiled code.
141         </description>
142     </option>
143     
144     <option name="OFFICIAL_BUILD">
145         <values>0,1</values>
146         <default-value>0</default-value>
147         <description>
148             Is this official build by wxWindows developers?
149         </description>
150     </option>
151     <option name="VENDOR">
152         <default-value>custom</default-value>
153         <description>
154             Use this to name your customized DLLs differently
155         </description>
156     </option>
157
158     <option name="CFG">
159         <default-value></default-value>
160         <description>
161 Name of your custom configuration. This affects directory
162 where object files are stored as well as the location of
163 compiled .lib files and setup.h under the lib/ toplevel directory.
164         </description>
165     </option>
166     
167     
168     <!-- ================================================================== -->
169     <!--                             Autoconf                               -->
170     <!-- ================================================================== -->
171     
172     <if cond="FORMAT=='autoconf'"> 
173         <option name="DEREZ"/>
174         <option name="TOOLKIT"/>
175         <option name="TOOLKIT_LOWERCASE"/>
176         <option name="TOOLKIT_VERSION"/>
177         <option name="TOOLCHAIN_NAME"/>
178         <option name="EXTRALIBS"/>
179         <option name="EXTRALIBS_XML"/>
180         <option name="EXTRALIBS_HTML"/>
181         <option name="EXTRALIBS_ODBC"/>
182         <option name="EXTRALIBS_GUI"/>
183         <option name="EXTRALIBS_OPENGL"/>
184         <option name="HOST_SUFFIX"/>
185         <option name="SAMPLES_RPATH_FLAG"/>
186         <option name="SAMPLES_RPATH_POSTLINK"/>
187         
188         <set var="TOP_SRCDIR">$(top_srcdir)/</set>
189         <set var="RUNTIME_LIBS">dynamic</set>
190         <set var="WXTOPDIR"/> <!-- to be overriden on bakefile cmd line -->
191     </if>
192
193     
194     <!-- ================================================================== -->
195     <!--                         windows compilers                          -->
196     <!-- ================================================================== -->
197
198     <if cond="FORMAT!='autoconf'">
199         <option name="RUNTIME_LIBS">
200             <values>dynamic,static</values>
201             <default-value>dynamic</default-value>
202             <description>
203 Version of C runtime library to use. You can change this to
204 static if SHARED=0, but it is highly recommended to not do
205 it if SHARED=1 unless you know what you are doing.
206             </description>
207         </option>
208         
209         <set var="WXTOPDIR"/> <!-- to be overriden on bakefile cmd line -->
210
211         <set var="TOOLKIT">MSW</set>
212         <set var="TOOLKIT_LOWERCASE">$(TOOLKIT.lower())</set>
213         <set var="TOOLKIT_VERSION"/>
214         <set var="HOST_SUFFIX"/>
215         <set var="EXTRACFLAGS"/>
216         <set var="EXTRALIBS"/>
217         <set var="EXTRALIBS_XML"/>
218         <set var="EXTRALIBS_HTML"/>
219         <set var="EXTRALIBS_ODBC"/>
220         <set var="EXTRALIBS_GUI"/>
221         <set var="EXTRALIBS_OPENGL">
222             <if cond="COMPILER=='wat'">opengl32.lib glu32.lib</if>
223             <if cond="COMPILER=='vc'">opengl32.lib glu32.lib</if>
224             <if cond="COMPILER=='gcc'">-lopengl32 -lglu32</if>
225         </set>
226
227         <set var="SRCDIR">
228             <if cond="BUILDING_LIB=='1'">..$(DIRSEP)..</if>
229             <if cond="BUILDING_LIB=='0'">.</if>
230         </set>
231         <set var="TOP_SRCDIR">$(SRCDIR)/$(WXTOPDIR)</set>
232     </if>
233     
234     <if cond="FORMAT=='mingw'">
235         <option name="GCC_VERSION">
236             <values>3,2.95</values>
237             <default-value>3</default-value>
238             <description>
239 Set the version of your Mingw installation here.
240     "3" ...... this is for Mingw 2.0 or newer (comes with gcc3)
241     "2.95" ... for Mingw 1.1 or any of the older versions
242             </description>
243         </option>
244         <set var="GCCFLAGS">
245             <if cond="GCC_VERSION=='2.95'">-fvtable-thunks</if>
246         </set>
247         <set var="EXTRACFLAGS">$(GCCFLAGS) -DHAVE_W32API_H</set>
248     </if>
249
250     <if cond="FORMAT=='cbuilderx'">
251         <set var="EXTRACFLAGS">
252             <if cond="COMPILER=='gcc'">-DHAVE_W32API_H</if>
253         </set>
254     </if>
255
256
257     <!-- ================================================================== -->
258     <!--            Project files - hardcode some defaults                  -->
259     <!-- ================================================================== -->
260
261     <if cond="FORMAT_SUPPORTS_CONDITIONS=='0'">
262         <set var="RUNTIME_LIBS">dynamic</set>
263         <set var="OFFICIAL_BUILD">0</set>
264         <set var="USE_HTML">1</set>
265         <set var="USE_OPENGL">1</set>
266         <set var="USE_ODBC">1</set>
267         <set var="MONOLITHIC">0</set>
268         <set var="USE_GUI">1</set>
269         <set var="USE_EXCEPTIONS">1</set>
270         <set var="DEBUG_INFO">default</set>
271         <set var="DEBUG_FLAG">default</set>
272         <set var="MSLU">0</set>
273     </if>
274
275
276     <!-- FIXME:
277          C++BuilderX supports only wxMSW, monolithic (sic!) static build
278          and the project can't be put into build/msw and store objects in
279          build/msw/something. This *must* be fixed! -->
280     <if cond="FORMAT=='cbuilderx'">
281         <set var="WXUNIV">0</set>
282         <set var="MONOLITHIC">1</set>
283         <set var="SRCDIR">.</set>
284         <set var="TOP_SRCDIR">$(SRCDIR)/$(WXTOPDIR)</set>
285         <set var="SHARED">0</set>
286     </if>
287
288
289     <!-- DigitalMars make is braindead, it doesn't have conditional
290          processing: -->
291     <if cond="FORMAT=='dmars'">
292         <set var="RUNTIME_LIBS">static</set>
293         <set var="BUILD">debug</set>
294         <set var="SHARED">0</set>
295         <set var="WXUNIV">0</set>
296         <set var="UNICODE">0</set>
297     </if>
298
299 </makefile>