]> git.saurik.com Git - wxWidgets.git/blobdiff - build/bakefiles/common.bkl
removed duplicate glcanvas entries
[wxWidgets.git] / build / bakefiles / common.bkl
index a854f30dc140df612a837a3d24a3d0a419495b51..9f64e18797b33a3f8049e3a7c5153d1096b8babc 100644 (file)
         <if cond="PLATFORM_WIN32=='0'">$(WXVERSIONTAG)</if>
     </set>
 
-    <set var="TOOLCHAIN_NAME">
-        $(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)-$(WXVER_MAJOR).$(WXVER_MINOR)
-    </set>
-
     
     <!-- =============================================================== -->
     <!--                    Names of component libraries:                -->
         <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>
     </template>
 
     <template id="3rdparty_lib" template="common_settings,anylib">
-        <libname>$(id)$(WXDEBUGFLAG)</libname>
+        <libname>$(id)$(WXDEBUGFLAG)$(HOST_SUFFIX)</libname>
     </template>
 
 
         <include>$(INC_REGEX)</include>
     </template>
 
-    <template id="wx_append">
+    <!-- for both GUI and wxBase libs/samples: -->
+    <template id="wx_append_base">
         <!-- link against builtin 3rd party libs, if needed: -->
         <sys-lib>$(LIB_TIFF)</sys-lib>
         <sys-lib>$(LIB_JPEG)</sys-lib>
         </if>        
     </template>
 
+    <!-- for GUI libs/samples: -->
+    <template id="wx_append" template="wx_append_base">
+        <ldlibs>$(EXTRALIBS_GUI)</ldlibs>
+    </template>
+
     <template id="wx_lib_b" template="wx,anylib">
         <set var="WXLIBNAME">$(wxwin.mkLibName(wxid))</set>
         <libname>$(WXLIBNAME)</libname>
     </template>
 
     <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">
         <depends>wxtiff</depends>
         <depends>wxjpeg</depends>
         <depends cond="FORMAT=='autoconf'">wxodbc</depends>
         <depends>wxregex</depends>
     </template>
+    <template id="wx_base_dll" template="wx_dll_b"
+                               template_append="wx_append_base">
+        <depends>wxzlib</depends>
+        <depends>wxregex</depends>
+    </template>
     
     <!-- =============================================================== -->
     <!--               Support for wxWindows samples and contrib:        -->