]> git.saurik.com Git - wxWidgets.git/commitdiff
make sure utils.cpp and utilsexc.cpp are built only once in monolib buld
authorVáclav Slavík <vslavik@fastmail.fm>
Sun, 10 Aug 2003 16:10:51 +0000 (16:10 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sun, 10 Aug 2003 16:10:51 +0000 (16:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22738 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/bakefiles/files.bkl

index 62cc9605672d6b766eeac72fef8deca948ae0a95..baad79330c5a4975fe4effabe539bff4716ef2a3 100644 (file)
@@ -101,10 +101,14 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
 <set var="BASE_MAC_SRC" hints="files">
     src/mac/dirmac.cpp
     src/mac/mimetmac.cpp
+    src/unix/baseunix.cpp
+</set>
+
+<set var="BASE_AND_GUI_MAC_SRC" hints="files">
     src/mac/utils.cpp
     src/mac/utilsexc.cpp
-    src/unix/baseunix.cpp
 </set>
+
 <set var="BASE_MAC_HDR" hints="files">
 </set>
 
@@ -1540,8 +1544,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
     src/mac/tooltip.cpp
     src/mac/toplevel.cpp
     src/mac/uma.cpp
-    src/mac/utils.cpp
-    src/mac/utilsexc.cpp
     src/mac/window.cpp
     <!-- Generic implementations used by wxMac: -->
     src/generic/caret.cpp
@@ -2115,6 +2117,9 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
         <if cond="PLATFORM_WIN32=='1'">$(BASE_WIN32_SRC)</if>
         <if cond="PLATFORM_MACOSX=='1'">$(BASE_MACOSX_SRC)</if>
     </set>
+    <set var="BASE_AND_GUI_TOOLKIT_SRC" hints="files">
+        <if cond="TOOLKIT=='MSW'">$(BASE_AND_GUI_MAC_SRC)</if>
+    </set>
     <set var="BASE_AND_GUI_PLATFORM_SRC" hints="files">
         <if cond="PLATFORM_UNIX=='1'">$(BASE_AND_GUI_UNIX_SRC)</if>
         <if cond="PLATFORM_WIN32=='1'">$(BASE_AND_GUI_WIN32_SRC)</if>
@@ -2131,7 +2136,8 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
         $(BASE_CMN_SRC) $(BASE_PLATFORM_SRC)
     </set>
     <set var="BASE_AND_GUI_SRC" hints="files">
-        $(BASE_AND_GUI_CMN_SRC) $(BASE_AND_GUI_PLATFORM_SRC)
+        $(BASE_AND_GUI_CMN_SRC)
+        $(BASE_AND_GUI_PLATFORM_SRC) $(BASE_AND_GUI_TOOLKIT_SRC)
     </set>