]> git.saurik.com Git - wxWidgets.git/commitdiff
support for building multilib DLLs
authorVáclav Slavík <vslavik@fastmail.fm>
Wed, 2 Jul 2003 11:56:47 +0000 (11:56 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Wed, 2 Jul 2003 11:56:47 +0000 (11:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21573 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/bakefiles/multilib.bkl

index f61aab6618d838692d596e8d8bab3c1d854fa2cd..a977678950bd42bfdc72b5e5368ee0798fdca7a4 100644 (file)
@@ -7,7 +7,8 @@
     
     <dll id="basedll" template="wx_dll"
          cond="SHARED=='1' and MONOLITHIC=='0'">
-        <define>WXMAKINGDLL</define>
+        <define>WXUSINGDLL</define>
+        <define>WXMAKINGDLL_BASE</define>
         <define>wxUSE_BASE=1</define>
         <define>wxUSE_GUI=0</define> 
         <sources>$(BASE_SRC) $(BASE_AND_GUI_SRC)</sources>
@@ -26,7 +27,8 @@
     
     <dll id="coredll" template="wx_dll"
          cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
-        <define>WXMAKINGDLL</define>
+        <define>WXUSINGDLL</define>
+        <define>WXMAKINGDLL_CORE</define>
         <define>wxUSE_BASE=0</define> 
         <sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources>
         <library>basedll</library>
@@ -45,7 +47,8 @@
     
     <dll id="htmldll" template="wx_dll"
          cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
-        <define>WXMAKINGDLL</define>
+        <define>WXUSINGDLL</define>
+        <define>WXMAKINGDLL_HTML</define>
         <sources>$(HTML_SRC)</sources>
         <library>coredll</library>
         <library>basedll</library>