]>
Commit | Line | Data |
---|---|---|
ddf98968 VS |
1 | <?xml version="1.0" ?> |
2 | <!-- $Id$ --> | |
3 | ||
4 | <makefile> | |
61639efb | 5 | |
498368e9 VS |
6 | <set var="BUILDING_LIB" overwrite="0">0</set> |
7 | ||
c8d58531 MW |
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 | ||
6990514b VS |
31 | <option name="SHARED"> |
32 | <values>0,1</values> | |
33 | <values-description>,DLL</values-description> | |
252b53f5 | 34 | <default-value>0</default-value> |
6990514b VS |
35 | <description> |
36 | What type of library to build? | |
37 | </description> | |
38 | </option> | |
61639efb | 39 | |
6990514b VS |
40 | <option name="WXUNIV"> |
41 | <values>0,1</values> | |
d3e6602e | 42 | <values-description>,Universal</values-description> |
6990514b VS |
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> | |
61639efb | 52 | <default-value>0</default-value> |
6990514b | 53 | <description> |
77ffb593 | 54 | Compile Unicode build of wxWidgets? |
6990514b VS |
55 | </description> |
56 | </option> | |
57 | ||
416f5bc8 VS |
58 | <if cond="FORMAT!='autoconf' and FORMAT!='watcom'"> |
59 | <option name="MSLU"> | |
60 | <values>0,1</values> | |
61639efb | 61 | <default-value>0</default-value> |
416f5bc8 VS |
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 | ||
4f6e1dac | 71 | <option name="BUILD"> |
6990514b VS |
72 | <values>debug,release</values> |
73 | <values-description>Debug,Release</values-description> | |
252b53f5 | 74 | <default-value>debug</default-value> |
4f6e1dac VS |
75 | <description> |
76 | Type of compiled binaries | |
77 | </description> | |
78 | </option> | |
1dba7b4c | 79 | |
e40b74ba MW |
80 | <if cond="FORMAT=='msvc'"> |
81 | <option name="TARGET_CPU"> | |
e40b74ba MW |
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. | |
b1e411d9 VS |
89 | |
90 | Accepted values: AMD64, IA64. | |
e40b74ba MW |
91 | </description> |
92 | </option> | |
93 | </if> | |
94 | <if cond="FORMAT!='msvc'"> | |
95 | <set var="TARGET_CPU"/> | |
96 | </if> | |
97 | ||
8c249a59 VS |
98 | <!-- FIXME: restore this once bakefile is fixed to not use |
99 | /Gm /GZ (incompatible with /O2) w/ debug-info --> | |
9d33d6b8 | 100 | <set var="DEBUG_INFO_DEFAULT"> |
1ff18f49 VS |
101 | <if cond="FORMAT in ['msvc','msvc6prj','msevc4prj','msvs2005prj']">1</if> |
102 | <if cond="FORMAT not in ['msvc','msvc6prj','msevc4prj','msvs2005prj']">default</if> | |
9d33d6b8 | 103 | </set> |
8c249a59 VS |
104 | --> |
105 | <set var="DEBUG_INFO_DEFAULT">default</set> | |
61639efb | 106 | |
4f6e1dac | 107 | <option name="DEBUG_INFO"> |
6990514b | 108 | <values>0,1,default</values> |
9d33d6b8 | 109 | <default-value>$(DEBUG_INFO_DEFAULT)</default-value> |
4f6e1dac VS |
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> | |
61639efb | 116 | |
4f6e1dac | 117 | <option name="DEBUG_FLAG"> |
6990514b | 118 | <values>0,1,default</values> |
4f6e1dac VS |
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"> | |
6990514b | 128 | <values>0,1,default</values> |
4f6e1dac VS |
129 | <default-value>default</default-value> |
130 | <description> | |
131 | Should link against debug RTL (msvcrtd.dll) or release (msvcrt.dll)? | |
9d33d6b8 | 132 | Acts according to BUILD by default. |
4f6e1dac VS |
133 | </description> |
134 | </option> | |
135 | </if> | |
136 | <if cond="FORMAT!='msvc'"> | |
137 | <set var="DEBUG_RUNTIME_LIBS">default</set> | |
138 | </if> | |
8998a324 VS |
139 | |
140 | <set var="MONOLITHIC_DEFAULT"> | |
141 | <if cond="FORMAT=='watcom'">1</if> | |
142 | <if cond="FORMAT!='watcom'">0</if> | |
143 | </set> | |
ddf98968 | 144 | <option name="MONOLITHIC"> |
6990514b VS |
145 | <values>0,1</values> |
146 | <values-description>Multilib,Monolithic</values-description> | |
8998a324 | 147 | <default-value>$(MONOLITHIC_DEFAULT)</default-value> |
ddf98968 VS |
148 | <description> |
149 | Multiple libraries or single huge monolithic one? | |
150 | </description> | |
151 | </option> | |
61639efb | 152 | |
c79241a2 VS |
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> | |
61639efb | 166 | |
ddf98968 | 167 | <option name="USE_GUI"> |
6990514b VS |
168 | <values>0,1</values> |
169 | <values-description>Base,GUI</values-description> | |
ddf98968 VS |
170 | <default-value>1</default-value> |
171 | <description> | |
172 | Build GUI libraries? | |
173 | </description> | |
174 | </option> | |
61639efb | 175 | |
4d264332 | 176 | <option name="USE_HTML"> |
6990514b | 177 | <values>0,1</values> |
4d264332 VS |
178 | <default-value>1</default-value> |
179 | <description> | |
180 | Build wxHTML library (USE_GUI must be 1)? | |
181 | </description> | |
182 | </option> | |
61639efb | 183 | |
557002cf VZ |
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 | ||
3849327b VS |
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> | |
61639efb | 199 | |
50acee04 JS |
200 | <option name="USE_AUI"> |
201 | <values>0,1</values> | |
202 | <default-value>1</default-value> | |
203 | <description> | |
204 | Build wxAUI library (USE_GUI must be 1)? | |
205 | </description> | |
206 | </option> | |
207 | ||
3b2cb431 JS |
208 | <option name="USE_RICHTEXT"> |
209 | <values>0,1</values> | |
210 | <default-value>1</default-value> | |
211 | <description> | |
212 | Build wxRichTextCtrl library (USE_GUI must be 1)? | |
213 | </description> | |
214 | </option> | |
215 | ||
54429bb3 RD |
216 | <option name="USE_STC"> |
217 | <values>0,1</values> | |
218 | <default-value>1</default-value> | |
219 | <description> | |
220 | Build wxStyledTextCtrl library (USE_GUI must be 1)? | |
221 | </description> | |
222 | </option> | |
223 | ||
4d264332 | 224 | <option name="USE_OPENGL"> |
6990514b | 225 | <values>0,1</values> |
a3aa294d | 226 | <default-value>0</default-value> |
4d264332 VS |
227 | <description> |
228 | Build OpenGL canvas library (USE_GUI must be 1)? | |
229 | </description> | |
230 | </option> | |
61639efb | 231 | |
bb41dcbe | 232 | <option name="USE_ODBC"> |
6990514b | 233 | <values>0,1</values> |
bb41dcbe VS |
234 | <default-value>0</default-value> |
235 | <description> | |
236 | Build ODBC database classes (USE_GUI must be 1)? | |
237 | </description> | |
238 | </option> | |
61639efb | 239 | |
aae7e12e VZ |
240 | <!-- currently only VC++ can compile wxDebugReport which is in QA lib --> |
241 | <set var="USE_QA_DEFAULT"> | |
1ff18f49 VS |
242 | <if cond="FORMAT in ['msvc','msvc6prj','msvs2005prj']">1</if> |
243 | <if cond="FORMAT not in ['msvc','msvc6prj','msvs2005prj']">0</if> | |
aae7e12e | 244 | </set> |
61639efb VZ |
245 | <option name="USE_QA"> |
246 | <values>0,1</values> | |
b1ac62dd | 247 | <default-value>$(USE_QA_DEFAULT)</default-value> |
61639efb VZ |
248 | <description> |
249 | Build quality assurance classes library (USE_GUI must be 1)? | |
250 | </description> | |
251 | </option> | |
252 | ||
9833a21a VS |
253 | <option name="USE_EXCEPTIONS"> |
254 | <values>0,1</values> | |
255 | <default-value>1</default-value> | |
256 | <description> | |
257 | Enable exceptions in compiled code. | |
258 | </description> | |
259 | </option> | |
61639efb | 260 | |
c2efd890 VZ |
261 | <option name="USE_RTTI"> |
262 | <values>0,1</values> | |
263 | <default-value>1</default-value> | |
264 | <description> | |
265 | Enable run-time type information (RTTI) in compiled code. | |
266 | </description> | |
267 | </option> | |
61639efb | 268 | |
d1e5aa07 VS |
269 | <option name="USE_THREADS"> |
270 | <values>0,1</values> | |
271 | <default-value>1</default-value> | |
272 | <description> | |
273 | Enable threading in compiled code. | |
274 | </description> | |
275 | </option> | |
61639efb | 276 | |
2713e629 RD |
277 | <if cond="FORMAT!='autoconf'"> |
278 | <option name="USE_GDIPLUS"> | |
279 | <values>0,1</values> | |
280 | <default-value>0</default-value> | |
281 | <description> | |
282 | Link with gdiplus.lib? (Needed for wxGraphicsContext, will also set wxUSE_GRAPHICS_CONTEXT) | |
283 | </description> | |
284 | </option> | |
285 | </if> | |
286 | ||
4fc5f509 | 287 | <option name="OFFICIAL_BUILD"> |
6990514b | 288 | <values>0,1</values> |
4fc5f509 VS |
289 | <default-value>0</default-value> |
290 | <description> | |
77ffb593 | 291 | Is this official build by wxWidgets developers? |
4fc5f509 VS |
292 | </description> |
293 | </option> | |
294 | <option name="VENDOR"> | |
295 | <default-value>custom</default-value> | |
296 | <description> | |
297 | Use this to name your customized DLLs differently | |
298 | </description> | |
299 | </option> | |
589e20d0 RL |
300 | <!-- These basically do what vendor does in the places it didn't. --> |
301 | <!-- They should all be unified under some suitable descriptor --> | |
302 | <option name="WX_FLAVOUR"> | |
303 | <default-value></default-value> | |
304 | </option> | |
305 | <option name="WX_LIB_FLAVOUR"> | |
306 | <default-value></default-value> | |
307 | </option> | |
cff5df9f VS |
308 | |
309 | <option name="CFG"> | |
310 | <default-value></default-value> | |
311 | <description> | |
4f6e1dac VS |
312 | Name of your custom configuration. This affects directory |
313 | where object files are stored as well as the location of | |
314 | compiled .lib files and setup.h under the lib/ toplevel directory. | |
cff5df9f | 315 | </description> |
670ec357 VS |
316 | </option> |
317 | ||
318 | <!-- unit tests support: --> | |
319 | <option name="CPPUNIT_CFLAGS"> | |
320 | <default-value></default-value> | |
321 | <description> | |
322 | Compiler flags needed to compile test suite in tests directory. If you want | |
323 | to run the tests, set it so that the compiler can find CppUnit headers. | |
324 | </description> | |
325 | </option> | |
61639efb | 326 | |
670ec357 VS |
327 | <option name="CPPUNIT_LIBS"> |
328 | <default-value></default-value> | |
329 | <description> | |
330 | Linker flags needed to link test suite in tests directory. If you want | |
331 | to run the tests, include CppUnit library here. | |
332 | </description> | |
cff5df9f | 333 | </option> |
61639efb VZ |
334 | |
335 | ||
eefdc53a VS |
336 | <!-- ================================================================== --> |
337 | <!-- Autoconf --> | |
338 | <!-- ================================================================== --> | |
61639efb VZ |
339 | |
340 | <if cond="FORMAT=='autoconf'"> | |
ddf98968 VS |
341 | <option name="DEREZ"/> |
342 | <option name="TOOLKIT"/> | |
343 | <option name="TOOLKIT_LOWERCASE"/> | |
344 | <option name="TOOLKIT_VERSION"/> | |
157a3440 | 345 | <option name="TOOLCHAIN_NAME"/> |
ceec2216 | 346 | <option name="TOOLCHAIN_FULLNAME"/> |
ddf98968 | 347 | <option name="EXTRALIBS"/> |
a69544bf | 348 | <option name="EXTRALIBS_XML"/> |
c839485c | 349 | <option name="EXTRALIBS_HTML"/> |
bb41dcbe | 350 | <option name="EXTRALIBS_ODBC"/> |
c74dc163 | 351 | <option name="EXTRALIBS_GUI"/> |
34b08d2c | 352 | <option name="EXTRALIBS_OPENGL"/> |
c79241a2 | 353 | <option name="EXTRALIBS_SDL"/> |
7fcba069 | 354 | <option name="EXTRALIBS_GNOMEPRINT"/> |
b1b592ad | 355 | <option name="CXXWARNINGS"/> |
ea66c762 | 356 | <option name="HOST_SUFFIX"/> |
ef0add05 VS |
357 | <option name="SAMPLES_RPATH_FLAG"/> |
358 | <option name="SAMPLES_RPATH_POSTLINK"/> | |
61639efb | 359 | |
4843dc4c | 360 | <set var="TOP_SRCDIR">$(top_srcdir)/</set> |
4b44ea2b | 361 | <set var="RUNTIME_LIBS">dynamic</set> |
e54bb212 | 362 | <set var="WXTOPDIR"/> <!-- to be overriden on bakefile cmd line --> |
61639efb | 363 | |
c79241a2 VS |
364 | <option name="WITH_PLUGIN_SDL"> |
365 | <values>0,1</values> | |
366 | </option> | |
6589dc98 VS |
367 | |
368 | <option name="wx_top_builddir"/> | |
ddf98968 VS |
369 | </if> |
370 | ||
61639efb | 371 | |
eefdc53a | 372 | <!-- ================================================================== --> |
1dba7b4c | 373 | <!-- windows/dos/os2 compilers --> |
eefdc53a VS |
374 | <!-- ================================================================== --> |
375 | ||
ddf98968 | 376 | <if cond="FORMAT!='autoconf'"> |
4b44ea2b | 377 | <option name="RUNTIME_LIBS"> |
6990514b | 378 | <values>dynamic,static</values> |
4b44ea2b VS |
379 | <default-value>dynamic</default-value> |
380 | <description> | |
4f6e1dac VS |
381 | Version of C runtime library to use. You can change this to |
382 | static if SHARED=0, but it is highly recommended to not do | |
383 | it if SHARED=1 unless you know what you are doing. | |
4b44ea2b VS |
384 | </description> |
385 | </option> | |
61639efb | 386 | |
4843dc4c VS |
387 | <set var="WXTOPDIR"/> <!-- to be overriden on bakefile cmd line --> |
388 | ||
a92d711e | 389 | <set var="TOOLKIT" overwrite="0"> |
af594eca | 390 | <if cond="FORMAT=='msevc4prj'">WINCE</if> |
1dba7b4c | 391 | <if cond="FORMAT!='msevc4prj' and PLATFORM_WIN32=='1'">MSW</if> |
b8af111f | 392 | <if cond="PLATFORM_MSDOS=='1'">MGL</if> |
1dba7b4c | 393 | <if cond="PLATFORM_OS2=='1'">PM</if> |
af594eca | 394 | </set> |
eefdc53a VS |
395 | <set var="TOOLKIT_LOWERCASE">$(TOOLKIT.lower())</set> |
396 | <set var="TOOLKIT_VERSION"/> | |
ea66c762 | 397 | <set var="HOST_SUFFIX"/> |
22cef566 | 398 | <set var="EXTRACFLAGS"/> |
6f53cd7c | 399 | <set var="EXTRALIBS"/> |
a69544bf | 400 | <set var="EXTRALIBS_XML"/> |
c839485c | 401 | <set var="EXTRALIBS_HTML"/> |
bb41dcbe | 402 | <set var="EXTRALIBS_ODBC"/> |
c74dc163 | 403 | <set var="EXTRALIBS_GUI"/> |
22cef566 | 404 | <set var="EXTRALIBS_OPENGL"> |
43b0b6bc | 405 | <if cond="COMPILER=='wat' and TOOLKIT=='MSW'">opengl32.lib glu32.lib</if> |
af594eca | 406 | <if cond="COMPILER in ['vc','evc']">opengl32.lib glu32.lib</if> |
22cef566 VS |
407 | <if cond="COMPILER=='gcc'">-lopengl32 -lglu32</if> |
408 | </set> | |
c79241a2 | 409 | <set var="EXTRALIBS_SDL"/> |
7fcba069 | 410 | <set var="EXTRALIBS_GNOMEPRINT"/> |
c79241a2 VS |
411 | |
412 | <set var="WITH_PLUGIN_SDL">0</set> | |
eefdc53a | 413 | |
cdc0282e | 414 | <set var="SRCDIR"> |
6990514b | 415 | <if cond="BUILDING_LIB=='1'">..$(DIRSEP)..</if> |
cdc0282e VS |
416 | <if cond="BUILDING_LIB=='0'">.</if> |
417 | </set> | |
4843dc4c | 418 | <set var="TOP_SRCDIR">$(SRCDIR)/$(WXTOPDIR)</set> |
ddf98968 | 419 | </if> |
61639efb | 420 | |
65fb1c11 VS |
421 | <if cond="FORMAT=='mingw'"> |
422 | <option name="GCC_VERSION"> | |
6990514b | 423 | <values>3,2.95</values> |
65fb1c11 VS |
424 | <default-value>3</default-value> |
425 | <description> | |
4f6e1dac VS |
426 | Set the version of your Mingw installation here. |
427 | "3" ...... this is for Mingw 2.0 or newer (comes with gcc3) | |
428 | "2.95" ... for Mingw 1.1 or any of the older versions | |
65fb1c11 VS |
429 | </description> |
430 | </option> | |
431 | <set var="GCCFLAGS"> | |
432 | <if cond="GCC_VERSION=='2.95'">-fvtable-thunks</if> | |
433 | </set> | |
434 | <set var="EXTRACFLAGS">$(GCCFLAGS) -DHAVE_W32API_H</set> | |
435 | </if> | |
d17bdeab | 436 | |
328f5196 | 437 | |
d17bdeab VS |
438 | <!-- ================================================================== --> |
439 | <!-- Project files - hardcode some defaults --> | |
440 | <!-- ================================================================== --> | |
441 | ||
442 | <if cond="FORMAT_SUPPORTS_CONDITIONS=='0'"> | |
443 | <set var="RUNTIME_LIBS">dynamic</set> | |
444 | <set var="OFFICIAL_BUILD">0</set> | |
32a52290 | 445 | <set var="USE_AUI">1</set> |
3b2cb431 | 446 | <set var="USE_RICHTEXT">1</set> |
54429bb3 | 447 | <set var="USE_STC">1</set> |
d17bdeab | 448 | <set var="USE_HTML">1</set> |
32a52290 | 449 | <set var="USE_MEDIA">1</set> |
3849327b | 450 | <set var="USE_XRC">1</set> |
d17bdeab VS |
451 | <set var="USE_OPENGL">1</set> |
452 | <set var="USE_ODBC">1</set> | |
61639efb | 453 | <set var="USE_QA">1</set> |
d17bdeab VS |
454 | <set var="MONOLITHIC">0</set> |
455 | <set var="USE_GUI">1</set> | |
9833a21a | 456 | <set var="USE_EXCEPTIONS">1</set> |
c2efd890 | 457 | <set var="USE_RTTI">1</set> |
d1e5aa07 | 458 | <set var="USE_THREADS">1</set> |
2713e629 | 459 | <if cond="FORMAT!='autoconf'"><set var="USE_GDIPLUS">0</set></if> |
9d33d6b8 | 460 | <set var="DEBUG_INFO">$(DEBUG_INFO_DEFAULT)</set> |
d17bdeab VS |
461 | <set var="DEBUG_FLAG">default</set> |
462 | <set var="MSLU">0</set> | |
463 | </if> | |
464 | ||
e6e885fd VS |
465 | |
466 | <!-- DigitalMars make is braindead, it doesn't have conditional | |
467 | processing: --> | |
468 | <if cond="FORMAT=='dmars'"> | |
469 | <set var="RUNTIME_LIBS">static</set> | |
470 | <set var="BUILD">debug</set> | |
471 | <set var="SHARED">0</set> | |
472 | <set var="WXUNIV">0</set> | |
473 | <set var="UNICODE">0</set> | |
f46a065c WS |
474 | <!-- Free version does not distribute OpenGL, |
475 | in commercial distribution better use dmars_smake format --> | |
476 | <set var="USE_OPENGL">0</set> | |
e6e885fd VS |
477 | </if> |
478 | ||
af594eca VS |
479 | <!-- No need for wxUniv on embedded devices (yet): --> |
480 | <if cond="FORMAT=='msevc4prj'"> | |
481 | <set var="WXUNIV">0</set> | |
482 | <set var="UNICODE">1</set> | |
1dba7b4c | 483 | <!-- Uploading debug reports from PDAs seems impractical --> |
61639efb | 484 | <set var="USE_QA">0</set> |
bc858dcf | 485 | <set var="MONOLITHIC">1</set> <!-- sic! --> |
5bcb84f8 VZ |
486 | <!-- RTTI and exceptions need separate cccrtti.lib with eVC4 --> |
487 | <set var="USE_RTTI">0</set> | |
488 | <set var="USE_EXCEPTIONS">0</set> | |
af594eca VS |
489 | </if> |
490 | ||
b8af111f | 491 | <!-- Need for wxUniv within wxMGL: --> |
4c4863db | 492 | <if cond="FORMAT!='autoconf' and TOOLKIT=='MGL'"> |
b8af111f | 493 | <set var="WXUNIV">1</set> |
43b0b6bc | 494 | <set var="USE_THREADS">0</set> |
7ee1ea9d | 495 | <set var="RUNTIME_LIBS">static</set> |
b8af111f WS |
496 | </if> |
497 | ||
ddf98968 | 498 | </makefile> |