added possibility to choose RTL

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21979 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2003-07-14 20:28:04 +00:00
parent 1c54c79268
commit 4b44ea2b40
2 changed files with 13 additions and 1 deletions

View File

@ -166,7 +166,7 @@
<debug-info>$(DEBUGFLAG)</debug-info>
<optimize>$(OPTIMIZEFLAG)</optimize>
<threading>multi</threading>
<runtime-libs>dynamic</runtime-libs>
<runtime-libs>$(RUNTIME_LIBS)</runtime-libs>
<if cond="FORMAT!='autoconf'">
<cppflags>$(EXTRACFLAGS)</cppflags>
</if>

View File

@ -85,7 +85,9 @@
<option name="EXTRALIBS"/>
<option name="EXTRALIBS_GUI"/>
<option name="SAMPLES_RPATH_FLAG"/>
<set var="TOP_SRCDIR">$(top_srcdir)/</set>
<set var="RUNTIME_LIBS">dynamic</set>
</if>
@ -94,6 +96,16 @@
<!-- ================================================================== -->
<if cond="FORMAT!='autoconf'">
<option name="RUNTIME_LIBS">
<values>dynamic static</values>
<default-value>dynamic</default-value>
<description>
Version of C runtime library to use. You can change this to
static if SHARED=0, but it is highly recommended to not do
it if SHARED=1 unless you know what you are doing.
</description>
</option>
<set var="WXTOPDIR"/> <!-- to be overriden on bakefile cmd line -->
<set var="TOOLKIT">MSW</set>