]> git.saurik.com Git - wxWidgets.git/blame - build/msw/config.bcc
Applied #9076 (scrolling bars grow box fix)
[wxWidgets.git] / build / msw / config.bcc
CommitLineData
560c9c20 1# =========================================================================
c4839ccf 2# This configuration file was generated by
95ff11c4 3# Bakefile 0.2.6 (http://www.bakefile.org)
c4839ccf
JS
4# Beware that all changes made to this file will be overwritten next
5# time you run Bakefile!
560c9c20
VS
6# =========================================================================
7
8
9# -------------------------------------------------------------------------
10# These are configurable options:
11# -------------------------------------------------------------------------
12
560c9c20
VS
13# C compiler
14!ifndef CC
15CC = bcc32
16!endif
d7dd1f1b 17
b17c1746
DE
18# C++ compiler
19!ifndef CXX
20CXX = bcc32
560c9c20 21!endif
d7dd1f1b 22
560c9c20
VS
23# Standard flags for CC
24!ifndef CFLAGS
25CFLAGS =
26!endif
d7dd1f1b 27
560c9c20
VS
28# Standard flags for C++
29!ifndef CXXFLAGS
30CXXFLAGS =
31!endif
d7dd1f1b 32
b17c1746
DE
33# Standard preprocessor flags (common for CC and CXX)
34!ifndef CPPFLAGS
35CPPFLAGS = -a8 -g0
d7dd1f1b
VS
36!endif
37
560c9c20
VS
38# Standard linker flags
39!ifndef LDFLAGS
e2412466 40LDFLAGS =
560c9c20 41!endif
d7dd1f1b 42
dbcca2fa
VZ
43# The C preprocessor
44!ifndef CPP
45CPP = cpp32 -Sr -oCON
46!endif
47
b17c1746
DE
48# What type of library to build? [0,1]
49!ifndef SHARED
50SHARED = 0
51!endif
52
53# Build wxUniversal instead of native port? [0,1]
54!ifndef WXUNIV
55WXUNIV = 0
56!endif
57
c4839ccf 58# Compile Unicode build of wxWidgets? [0,1]
b17c1746 59!ifndef UNICODE
4fc1c0f0 60UNICODE = 1
560c9c20 61!endif
d7dd1f1b 62
2265a2d5
VS
63# Use MSLU library when building Unicode version. [0,1]
64!ifndef MSLU
65MSLU = 0
66!endif
67
b17c1746
DE
68# Type of compiled binaries [debug,release]
69!ifndef BUILD
70BUILD = debug
560c9c20 71!endif
d7dd1f1b 72
b17c1746
DE
73# Should debugging info be included in the executables? The default value
74# "default" means that debug info will be included if BUILD=debug
75# and not included if BUILD=release. [0,1,default]
76!ifndef DEBUG_INFO
77DEBUG_INFO = default
560c9c20 78!endif
d7dd1f1b 79
c6684d42
VZ
80# Value of wxDEBUG_LEVEL. The default value is the same as 1 and means that all
81# but expensive assert checks are enabled, use 0 to completely remove debugging
82# code. [0,1,default]
b17c1746 83!ifndef DEBUG_FLAG
c6684d42 84DEBUG_FLAG = 1
560c9c20 85!endif
d7dd1f1b 86
b17c1746
DE
87# Multiple libraries or single huge monolithic one? [0,1]
88!ifndef MONOLITHIC
89MONOLITHIC = 0
b71531ad
VZ
90!endif
91
560c9c20
VS
92# Build GUI libraries? [0,1]
93!ifndef USE_GUI
94USE_GUI = 1
95!endif
d7dd1f1b 96
560c9c20
VS
97# Build wxHTML library (USE_GUI must be 1)? [0,1]
98!ifndef USE_HTML
99USE_HTML = 1
100!endif
d7dd1f1b 101
0604740a
VZ
102# Build multimedia library (USE_GUI must be 1)? [0,1]
103!ifndef USE_MEDIA
104USE_MEDIA = 1
105!endif
106
a32f9aaf
VS
107# Build wxXRC library (USE_GUI must be 1)? [0,1]
108!ifndef USE_XRC
109USE_XRC = 1
110!endif
111
50acee04
JS
112# Build wxAUI library (USE_GUI must be 1)? [0,1]
113!ifndef USE_AUI
114USE_AUI = 1
115!endif
116
3c3ead1d
PC
117# Build wxRibbon library (USE_GUI must be 1)? [0,1]
118!ifndef USE_RIBBON
119USE_RIBBON = 1
120!endif
121
1c4293cb
VZ
122# Build wxPropertyGrid library (USE_GUI must be 1)? [0,1]
123!ifndef USE_PROPGRID
124USE_PROPGRID = 1
125!endif
126
3b2cb431
JS
127# Build wxRichTextCtrl library (USE_GUI must be 1)? [0,1]
128!ifndef USE_RICHTEXT
129USE_RICHTEXT = 1
130!endif
131
54429bb3
RD
132# Build wxStyledTextCtrl library (USE_GUI must be 1)? [0,1]
133!ifndef USE_STC
134USE_STC = 1
135!endif
136
b17c1746
DE
137# Build OpenGL canvas library (USE_GUI must be 1)? [0,1]
138!ifndef USE_OPENGL
671683c4 139USE_OPENGL = 1
b17c1746
DE
140!endif
141
61639efb
VZ
142# Build quality assurance classes library (USE_GUI must be 1)? [0,1]
143!ifndef USE_QA
87853604 144USE_QA = 0
61639efb
VZ
145!endif
146
b17c1746
DE
147# Enable exceptions in compiled code. [0,1]
148!ifndef USE_EXCEPTIONS
149USE_EXCEPTIONS = 1
150!endif
151
a9b99afc
VZ
152# Enable run-time type information (RTTI) in compiled code. [0,1]
153!ifndef USE_RTTI
154USE_RTTI = 1
155!endif
156
157# Enable threading in compiled code. [0,1]
158!ifndef USE_THREADS
159USE_THREADS = 1
160!endif
161
2713e629
RD
162# Link with gdiplus.lib? (Needed for wxGraphicsContext, will also set wxUSE_GRAPHICS_CONTEXT) [0,1]
163!ifndef USE_GDIPLUS
164USE_GDIPLUS = 0
165!endif
166
c4839ccf 167# Is this official build by wxWidgets developers? [0,1]
b17c1746
DE
168!ifndef OFFICIAL_BUILD
169OFFICIAL_BUILD = 0
560c9c20 170!endif
d7dd1f1b 171
560c9c20
VS
172# Use this to name your customized DLLs differently
173!ifndef VENDOR
174VENDOR = custom
175!endif
d7dd1f1b 176
c33fae85
RN
177#
178!ifndef WX_FLAVOUR
179WX_FLAVOUR =
180!endif
181
182#
183!ifndef WX_LIB_FLAVOUR
184WX_LIB_FLAVOUR =
185!endif
186
b17c1746
DE
187# Name of your custom configuration. This affects directory
188# where object files are stored as well as the location of
189# compiled .lib files and setup.h under the lib/ toplevel directory.
190!ifndef CFG
191CFG =
192!endif
193
b63b07a8
RL
194# Compiler flags needed to compile test suite in tests directory. If you want
195# to run the tests, set it so that the compiler can find CppUnit headers.
196!ifndef CPPUNIT_CFLAGS
197CPPUNIT_CFLAGS =
198!endif
199
200# Linker flags needed to link test suite in tests directory. If you want
201# to run the tests, include CppUnit library here.
202!ifndef CPPUNIT_LIBS
203CPPUNIT_LIBS =
204!endif
205
b17c1746
DE
206# Version of C runtime library to use. You can change this to
207# static if SHARED=0, but it is highly recommended to not do
208# it if SHARED=1 unless you know what you are doing. [dynamic,static]
209!ifndef RUNTIME_LIBS
210RUNTIME_LIBS = dynamic
560c9c20 211!endif
d7dd1f1b 212