Remove WX_DEBUG option from Unix wx presets, it's not needed any more.
It doesn't make sense to select debug or release build of wxWidgets any more as they are now compatible under Unix. Under Windows the option is still needed but it selects the build using debug (or not) version of the CRT rather than the one built with __WXDEBUG__ defined. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61891 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
ab06470e49
commit
046e85ca80
2 changed files with 7 additions and 24 deletions
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
- WX_* : used to let the user of the generated makefile choose a wxWidgets
|
||||
build among those available; you can use them in your project to
|
||||
e.g. build a target only if WX_DEBUG is 0 or if WX_PORT is "msw".
|
||||
e.g. build a target only if WX_SHARED is 0 or if WX_PORT is "msw".
|
||||
|
||||
|
||||
VARIABLES:
|
||||
|
|
@ -24,7 +24,8 @@
|
|||
|
||||
- wx, wx-lib: templates to be used respectively for <dll>/<exe> and <lib>
|
||||
targets; they add all the wxWidgets-related settings (e.g. the
|
||||
include and library search paths, the __WXDEBUG__ symbol, etc).
|
||||
include and library search paths, the necessary preprocessor
|
||||
symbols, etc).
|
||||
|
||||
- wxgui: to be used when building GUI-mode applications.
|
||||
|
||||
|
|
@ -33,7 +34,7 @@
|
|||
need it when compiling wxBase-only code).
|
||||
|
||||
- wxlike: this template should be combined with "wx" or "wx-lib" and will
|
||||
make your project build with the same Unicode, debug & shared
|
||||
make your project build with the same Unicode & shared
|
||||
config as the wxWidgets build selected using the WX_* options.
|
||||
|
||||
|
||||
|
|
@ -176,7 +177,6 @@
|
|||
<!-- 'gnu' format needs to redefine the following options later in wx_unix.bkl -->
|
||||
<if cond="FORMAT=='gnu'">
|
||||
<set var="WX_UNICODE"/>
|
||||
<set var="WX_DEBUG"/>
|
||||
<set var="WX_SHARED"/>
|
||||
<set var="WX_PORT"/>
|
||||
<set var="WX_VERSION"/>
|
||||
|
|
@ -219,7 +219,7 @@
|
|||
<values-description>Release,Debug</values-description>
|
||||
<default-value>$(WX_DEBUG_DEFAULT)</default-value>
|
||||
<description>
|
||||
Use debug build of wxWidgets (define __WXDEBUG__)?
|
||||
Use debug build of wxWidgets (linked with debug CRT)?
|
||||
</description>
|
||||
</option>
|
||||
</if>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue