]> git.saurik.com Git - wxWidgets.git/commitdiff
MGL workaround for the build system.
authorWłodzimierz Skiba <abx@abx.art.pl>
Tue, 14 Sep 2004 11:41:21 +0000 (11:41 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Tue, 14 Sep 2004 11:41:21 +0000 (11:41 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29138 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/bakefiles/files.bkl

index c0cd265f51f83e990126a334a46abee8d056249a..0714f762a45f970ff91929c6b62cffb4d94827fa 100644 (file)
@@ -2370,7 +2370,11 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
     </set>
     <set var="BASE_PLATFORM_SRC" hints="files">
         <if cond="PLATFORM_UNIX=='1'">$(BASE_UNIX_SRC)</if>
-        <if cond="PLATFORM_WIN32=='1'">$(BASE_WIN32_SRC) $(BASE_WINCE_SRC)</if>
+        <!-- 
+            workaround until Bakefiles do not support more than one platform 
+            for Open Watcom (DOS(MGL)/MSW) - do not include WIN32 base for DOS application
+        -->
+        <if cond="PLATFORM_WIN32=='1' and TOOLKIT!='MGL'">$(BASE_WIN32_SRC) $(BASE_WINCE_SRC)</if>
         <if cond="PLATFORM_MACOSX=='1'">$(BASE_MACOSX_SRC)</if>
         <if cond="PLATFORM_OS2=='1'">$(BASE_OS2_SRC)</if>
     </set>