]> git.saurik.com Git - wxWidgets.git/blobdiff - build/bakefiles/common.bkl
fixed /Mxx flag when using static RTL
[wxWidgets.git] / build / bakefiles / common.bkl
index 9f64e18797b33a3f8049e3a7c5153d1096b8babc..c2a5e9265b32d94bc545ec138dc0e052b797319e 100644 (file)
     </template>
 
     <!-- for both GUI and wxBase libs/samples: -->
-    <template id="wx_append_base">
+    <template id="wx_append_base_nomono">
         <!-- link against builtin 3rd party libs, if needed: -->
         <sys-lib>$(LIB_TIFF)</sys-lib>
         <sys-lib>$(LIB_JPEG)</sys-lib>
     </template>
 
     <!-- for GUI libs/samples: -->
-    <template id="wx_append" template="wx_append_base">
+    <template id="wx_append_nomono" template="wx_append_base_nomono">
         <ldlibs>$(EXTRALIBS_GUI)</ldlibs>
     </template>
 
+
+    <template id="wx_append_base" template_append="wx_append_base_nomono">
+        <!-- Always link against the wxWin library in monolithic build: -->
+        <sys-lib>$(WXLIB_MONO)</sys-lib>
+    </template>
+    <template id="wx_append" template_append="wx_append_nomono">
+        <!-- Always link against the wxWin library in monolithic build: -->
+        <sys-lib>$(WXLIB_MONO)</sys-lib>
+    </template>
+    
+
     <template id="wx_lib_b" template="wx,anylib">
         <set var="WXLIBNAME">$(wxwin.mkLibName(wxid))</set>
         <libname>$(WXLIBNAME)</libname>
 
     <template id="wx_lib" template="wx_lib_b"/>
     <template id="wx_base_lib" template="wx_lib_b"/>
-    <template id="wx_dll" template="wx_dll_b" template_append="wx_append">
+    <template id="wx_dll" template="wx_dll_b"
+                          template_append="wx_append_nomono">
         <depends>wxtiff</depends>
         <depends>wxjpeg</depends>
         <depends>wxpng</depends>
         <depends>wxregex</depends>
     </template>
     <template id="wx_base_dll" template="wx_dll_b"
-                               template_append="wx_append_base">
+                               template_append="wx_append_base_nomono">
         <depends>wxzlib</depends>
         <depends>wxregex</depends>
     </template>