]> git.saurik.com Git - wxWidgets.git/blob - build/bakefiles/config.bkl
Use wxUniv textctrl for wxX11
[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>1</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>release</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 <option name="MONOLITHIC">
91 <values>0,1</values>
92 <values-description>Multilib,Monolithic</values-description>
93 <default-value>0</default-value>
94 <description>
95 Multiple libraries or single huge monolithic one?
96 </description>
97 </option>
98
99 <option name="USE_GUI">
100 <values>0,1</values>
101 <values-description>Base,GUI</values-description>
102 <default-value>1</default-value>
103 <description>
104 Build GUI libraries?
105 </description>
106 </option>
107
108 <option name="USE_HTML">
109 <values>0,1</values>
110 <default-value>1</default-value>
111 <description>
112 Build wxHTML library (USE_GUI must be 1)?
113 </description>
114 </option>
115
116 <option name="USE_OPENGL">
117 <values>0,1</values>
118 <default-value>0</default-value>
119 <description>
120 Build OpenGL canvas library (USE_GUI must be 1)?
121 </description>
122 </option>
123
124 <option name="USE_ODBC">
125 <values>0,1</values>
126 <default-value>0</default-value>
127 <description>
128 Build ODBC database classes (USE_GUI must be 1)?
129 </description>
130 </option>
131
132 <option name="OFFICIAL_BUILD">
133 <values>0,1</values>
134 <default-value>0</default-value>
135 <description>
136 Is this official build by wxWindows developers?
137 </description>
138 </option>
139 <option name="VENDOR">
140 <default-value>custom</default-value>
141 <description>
142 Use this to name your customized DLLs differently
143 </description>
144 </option>
145
146 <option name="CFG">
147 <default-value></default-value>
148 <description>
149 Name of your custom configuration. This affects directory
150 where object files are stored as well as the location of
151 compiled .lib files and setup.h under the lib/ toplevel directory.
152 </description>
153 </option>
154
155
156 <!-- ================================================================== -->
157 <!-- Autoconf -->
158 <!-- ================================================================== -->
159
160 <if cond="FORMAT=='autoconf'">
161 <option name="DEREZ"/>
162 <option name="TOOLKIT"/>
163 <option name="TOOLKIT_LOWERCASE"/>
164 <option name="TOOLKIT_VERSION"/>
165 <option name="TOOLCHAIN_NAME"/>
166 <option name="EXTRALIBS"/>
167 <option name="EXTRALIBS_XML"/>
168 <option name="EXTRALIBS_ODBC"/>
169 <option name="EXTRALIBS_GUI"/>
170 <option name="EXTRALIBS_OPENGL"/>
171 <option name="SAMPLES_RPATH_FLAG"/>
172 <option name="HOST_SUFFIX"/>
173
174 <set var="TOP_SRCDIR">$(top_srcdir)/</set>
175 <set var="RUNTIME_LIBS">dynamic</set>
176 <set var="WXTOPDIR"/> <!-- to be overriden on bakefile cmd line -->
177 </if>
178
179
180 <!-- ================================================================== -->
181 <!-- Windows compilers -->
182 <!-- ================================================================== -->
183
184 <if cond="FORMAT!='autoconf'">
185 <option name="RUNTIME_LIBS">
186 <values>dynamic,static</values>
187 <default-value>dynamic</default-value>
188 <description>
189 Version of C runtime library to use. You can change this to
190 static if SHARED=0, but it is highly recommended to not do
191 it if SHARED=1 unless you know what you are doing.
192 </description>
193 </option>
194
195 <set var="WXTOPDIR"/> <!-- to be overriden on bakefile cmd line -->
196
197 <set var="TOOLKIT">MSW</set>
198 <set var="TOOLKIT_LOWERCASE">$(TOOLKIT.lower())</set>
199 <set var="TOOLKIT_VERSION"/>
200 <set var="SAMPLES_RPATH_FLAG"/>
201 <set var="HOST_SUFFIX"/>
202 <set var="EXTRALIBS"/>
203 <set var="EXTRALIBS_XML"/>
204 <set var="EXTRALIBS_ODBC"/>
205 <set var="EXTRALIBS_GUI"/>
206 <set var="EXTRACFLAGS"/>
207
208 <set var="SRCDIR">
209 <if cond="BUILDING_LIB=='1'">..$(DIRSEP)..</if>
210 <if cond="BUILDING_LIB=='0'">.</if>
211 </set>
212 <set var="TOP_SRCDIR">$(SRCDIR)/$(WXTOPDIR)</set>
213 </if>
214
215 <if cond="FORMAT=='mingw'">
216 <option name="GCC_VERSION">
217 <values>3,2.95</values>
218 <default-value>3</default-value>
219 <description>
220 Set the version of your Mingw installation here.
221 "3" ...... this is for Mingw 2.0 or newer (comes with gcc3)
222 "2.95" ... for Mingw 1.1 or any of the older versions
223 </description>
224 </option>
225 <set var="GCCFLAGS">
226 <if cond="GCC_VERSION=='2.95'">-fvtable-thunks</if>
227 </set>
228 <set var="EXTRACFLAGS">$(GCCFLAGS) -DHAVE_W32API_H</set>
229 </if>
230
231 </makefile>