2003-06-23 15:50:43 -04:00
|
|
|
<?xml version="1.0" ?>
|
2003-07-02 18:29:29 -04:00
|
|
|
|
2003-06-23 15:50:43 -04:00
|
|
|
<makefile>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2007-03-19 12:12:19 -04:00
|
|
|
<define-rule name="wxshortcut" extends="phony">
|
|
|
|
<template>
|
|
|
|
<set var="name">$(id.replace('wx',''))</set>
|
|
|
|
<set var="namedll">
|
|
|
|
<if cond="SHARED=='1'">$(name)dll</if>
|
|
|
|
</set>
|
|
|
|
<set var="namelib">
|
|
|
|
<if cond="SHARED=='0'">$(name)lib</if>
|
|
|
|
</set>
|
|
|
|
<depends>$(namedll)</depends>
|
|
|
|
<depends>$(namelib)</depends>
|
|
|
|
</template>
|
|
|
|
</define-rule>
|
|
|
|
|
2003-06-23 15:50:43 -04:00
|
|
|
<!-- ================================================================= -->
|
2003-06-25 12:29:51 -04:00
|
|
|
<!-- wxBase library -->
|
2003-06-23 15:50:43 -04:00
|
|
|
<!-- ================================================================= -->
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2003-07-06 18:47:37 -04:00
|
|
|
<dll id="basedll" template="wx_base_dll"
|
2003-06-23 15:50:43 -04:00
|
|
|
cond="SHARED=='1' and MONOLITHIC=='0'">
|
2003-07-02 07:56:47 -04:00
|
|
|
<define>WXMAKINGDLL_BASE</define>
|
2003-06-25 12:29:51 -04:00
|
|
|
<define>wxUSE_BASE=1</define>
|
|
|
|
<sources>$(BASE_SRC) $(BASE_AND_GUI_SRC)</sources>
|
2003-07-27 05:50:55 -04:00
|
|
|
<msvc-headers>$(BASE_CMN_HDR) $(BASE_PLATFORM_HDR)</msvc-headers>
|
2003-06-23 15:50:43 -04:00
|
|
|
</dll>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2003-07-06 18:47:37 -04:00
|
|
|
<lib id="baselib" template="wx_base_lib"
|
2003-06-23 15:50:43 -04:00
|
|
|
cond="SHARED=='0' and MONOLITHIC=='0'">
|
2005-03-20 19:11:06 -05:00
|
|
|
<define>wxUSE_BASE=1</define>
|
2003-06-25 12:29:51 -04:00
|
|
|
<sources>$(BASE_SRC) $(BASE_AND_GUI_SRC)</sources>
|
2003-07-27 05:50:55 -04:00
|
|
|
<msvc-headers>$(BASE_CMN_HDR) $(BASE_PLATFORM_HDR)</msvc-headers>
|
2003-06-25 12:29:51 -04:00
|
|
|
</lib>
|
2003-08-13 17:22:50 -04:00
|
|
|
|
2007-03-19 12:12:19 -04:00
|
|
|
<wxshortcut id="wxbase" cond="MONOLITHIC=='0'"/>
|
|
|
|
|
2004-04-01 15:20:57 -05:00
|
|
|
<set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">base=baselib+basedll</set>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
|
|
|
|
2003-07-27 18:41:06 -04:00
|
|
|
<!-- ================================================================= -->
|
|
|
|
<!-- wxNet library -->
|
|
|
|
<!-- ================================================================= -->
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2003-07-27 18:41:06 -04:00
|
|
|
<dll id="netdll" template="wx_base_dll"
|
|
|
|
cond="SHARED=='1' and MONOLITHIC=='0'">
|
|
|
|
<define>WXUSINGDLL</define>
|
|
|
|
<define>WXMAKINGDLL_NET</define>
|
|
|
|
<sources>$(NET_SRC)</sources>
|
2020-12-30 08:29:06 -05:00
|
|
|
<msvc-headers>$(NET_CMN_HDR)</msvc-headers>
|
2003-07-27 18:41:06 -04:00
|
|
|
<library>basedll</library>
|
|
|
|
</dll>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2003-07-27 18:41:06 -04:00
|
|
|
<lib id="netlib" template="wx_base_lib"
|
|
|
|
cond="SHARED=='0' and MONOLITHIC=='0'">
|
|
|
|
<sources>$(NET_SRC)</sources>
|
2020-12-30 08:29:06 -05:00
|
|
|
<msvc-headers>$(NET_CMN_HDR)</msvc-headers>
|
2003-07-27 18:41:06 -04:00
|
|
|
</lib>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2007-03-19 12:12:19 -04:00
|
|
|
<wxshortcut id="wxnet" cond="MONOLITHIC=='0'"/>
|
|
|
|
|
2004-04-01 15:20:57 -05:00
|
|
|
<set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">net=netlib+netdll</set>
|
2003-06-25 12:29:51 -04:00
|
|
|
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2003-06-25 12:29:51 -04:00
|
|
|
<!-- ================================================================= -->
|
|
|
|
<!-- Main GUI library -->
|
|
|
|
<!-- ================================================================= -->
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2003-06-25 12:29:51 -04:00
|
|
|
<dll id="coredll" template="wx_dll"
|
|
|
|
cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
|
2003-07-05 13:11:57 -04:00
|
|
|
<define>WXUSINGDLL</define>
|
2003-07-02 07:56:47 -04:00
|
|
|
<define>WXMAKINGDLL_CORE</define>
|
2005-03-20 19:11:06 -05:00
|
|
|
<define>wxUSE_BASE=0</define>
|
2018-09-02 17:36:41 -04:00
|
|
|
<sources>$(BASE_AND_GUI_SRC) $(CORE_SRC) $(PLUGIN_SRC)</sources>
|
2003-07-27 05:50:55 -04:00
|
|
|
<msvc-headers>$(ALL_GUI_HEADERS)</msvc-headers>
|
2003-06-30 19:46:11 -04:00
|
|
|
<library>basedll</library>
|
2003-06-25 12:29:51 -04:00
|
|
|
</dll>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2003-06-25 12:29:51 -04:00
|
|
|
<lib id="corelib" template="wx_lib"
|
|
|
|
cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'">
|
2005-03-20 19:11:06 -05:00
|
|
|
<define>wxUSE_BASE=0</define>
|
2018-09-02 17:36:41 -04:00
|
|
|
<sources>$(BASE_AND_GUI_SRC) $(CORE_SRC) $(PLUGIN_SRC)</sources>
|
2003-07-27 05:50:55 -04:00
|
|
|
<msvc-headers>$(ALL_GUI_HEADERS)</msvc-headers>
|
2003-06-23 15:50:43 -04:00
|
|
|
</lib>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2007-03-19 12:12:19 -04:00
|
|
|
<wxshortcut id="wxcore" cond="MONOLITHIC=='0' and USE_GUI=='1'"/>
|
|
|
|
|
2004-04-01 15:20:57 -05:00
|
|
|
<set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">core=corelib+coredll</set>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
|
|
|
|
2003-08-01 21:07:39 -04:00
|
|
|
<!-- ================================================================= -->
|
|
|
|
<!-- "Advanced" controls library -->
|
|
|
|
<!-- ================================================================= -->
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2003-08-01 21:07:39 -04:00
|
|
|
<dll id="advdll" template="wx_dll"
|
|
|
|
cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
|
|
|
|
<define>WXUSINGDLL</define>
|
|
|
|
<define>WXMAKINGDLL_ADV</define>
|
2018-09-02 17:36:41 -04:00
|
|
|
<sources>$(ADVANCED_SRC)</sources>
|
2003-08-01 21:07:39 -04:00
|
|
|
<msvc-headers>$(ADVANCED_HDR)</msvc-headers>
|
|
|
|
<library>coredll</library>
|
|
|
|
<library>basedll</library>
|
2004-02-01 13:31:54 -05:00
|
|
|
<ldlibs>$(PLUGIN_ADV_EXTRALIBS)</ldlibs>
|
2003-08-01 21:07:39 -04:00
|
|
|
</dll>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2003-08-01 21:07:39 -04:00
|
|
|
<lib id="advlib" template="wx_lib"
|
|
|
|
cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'">
|
2018-09-02 17:36:41 -04:00
|
|
|
<sources>$(ADVANCED_SRC)</sources>
|
2003-08-01 21:07:39 -04:00
|
|
|
<msvc-headers>$(ADVANCED_HDR)</msvc-headers>
|
|
|
|
</lib>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2007-03-19 12:12:19 -04:00
|
|
|
<wxshortcut id="wxadv" cond="MONOLITHIC=='0' and USE_GUI=='1'"/>
|
|
|
|
|
2004-04-01 15:20:57 -05:00
|
|
|
<set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">adv=advlib+advdll</set>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
|
|
|
|
2004-11-11 00:30:21 -05:00
|
|
|
<!-- ================================================================= -->
|
|
|
|
<!-- wxMedia classes library -->
|
|
|
|
<!-- ================================================================= -->
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2004-11-11 00:30:21 -05:00
|
|
|
<dll id="mediadll" template="wx_dll"
|
2006-02-10 14:37:40 -05:00
|
|
|
cond="SHARED=='1' and USE_MEDIA=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
|
2004-11-11 00:30:21 -05:00
|
|
|
<define>WXUSINGDLL</define>
|
|
|
|
<define>WXMAKINGDLL_MEDIA</define>
|
|
|
|
<sources>$(MEDIA_SRC)</sources>
|
|
|
|
<msvc-headers>$(MEDIA_HDR)</msvc-headers>
|
|
|
|
<library>coredll</library>
|
|
|
|
<library>basedll</library>
|
2007-11-20 17:35:40 -05:00
|
|
|
<ldlibs>$(EXTRALIBS_MEDIA)</ldlibs>
|
2004-11-11 00:30:21 -05:00
|
|
|
</dll>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2004-11-11 00:30:21 -05:00
|
|
|
<lib id="medialib" template="wx_lib"
|
2006-02-10 14:37:40 -05:00
|
|
|
cond="SHARED=='0' and USE_MEDIA=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
|
2004-11-11 00:30:21 -05:00
|
|
|
<sources>$(MEDIA_SRC)</sources>
|
|
|
|
<msvc-headers>$(MEDIA_HDR)</msvc-headers>
|
|
|
|
</lib>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2007-03-19 12:12:19 -04:00
|
|
|
<wxshortcut id="wxmedia" cond="MONOLITHIC=='0' and USE_GUI=='1' and USE_MEDIA=='1'"/>
|
|
|
|
|
2004-11-11 00:30:21 -05:00
|
|
|
<set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">media=medialib+mediadll</set>
|
|
|
|
|
|
|
|
|
2003-06-23 15:50:43 -04:00
|
|
|
<!-- ================================================================ -->
|
|
|
|
<!-- wxHTML -->
|
|
|
|
<!-- ================================================================ -->
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2003-06-23 15:50:43 -04:00
|
|
|
<dll id="htmldll" template="wx_dll"
|
2004-11-18 03:14:18 -05:00
|
|
|
cond="SHARED=='1' and USE_GUI=='1' and USE_HTML=='1' and MONOLITHIC=='0'">
|
2003-07-05 13:11:57 -04:00
|
|
|
<define>WXUSINGDLL</define>
|
2003-07-02 07:56:47 -04:00
|
|
|
<define>WXMAKINGDLL_HTML</define>
|
2003-06-23 15:50:43 -04:00
|
|
|
<sources>$(HTML_SRC)</sources>
|
2003-06-30 19:46:11 -04:00
|
|
|
<library>coredll</library>
|
|
|
|
<library>basedll</library>
|
2003-10-07 15:47:02 -04:00
|
|
|
<ldlibs>$(EXTRALIBS_HTML)</ldlibs>
|
2003-07-27 05:50:55 -04:00
|
|
|
<msvc-headers>$(HTML_HDR)</msvc-headers>
|
2003-06-23 15:50:43 -04:00
|
|
|
</dll>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2007-01-22 08:07:27 -05:00
|
|
|
<!-- use this to conditonally link against htmldll with <library>: -->
|
|
|
|
<set var="htmldll_library_link">
|
|
|
|
<if cond="SHARED=='1' and USE_GUI=='1' and USE_HTML=='1' and MONOLITHIC=='0'">htmldll</if>
|
|
|
|
</set>
|
|
|
|
|
2003-06-23 15:50:43 -04:00
|
|
|
<lib id="htmllib" template="wx_lib"
|
2004-11-18 03:14:18 -05:00
|
|
|
cond="SHARED=='0' and USE_GUI=='1' and USE_HTML=='1' and MONOLITHIC=='0'">
|
2003-06-23 15:50:43 -04:00
|
|
|
<sources>$(HTML_SRC)</sources>
|
2003-07-27 05:50:55 -04:00
|
|
|
<msvc-headers>$(HTML_HDR)</msvc-headers>
|
2003-06-23 15:50:43 -04:00
|
|
|
</lib>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2007-03-19 12:12:19 -04:00
|
|
|
<wxshortcut id="wxhtml" cond="MONOLITHIC=='0' and USE_HTML=='1'"/>
|
|
|
|
|
2004-04-01 15:20:57 -05:00
|
|
|
<set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">html=htmllib+htmldll</set>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2011-05-04 11:40:00 -04:00
|
|
|
<!-- ================================================================ -->
|
2011-08-19 06:45:16 -04:00
|
|
|
<!-- wxWEBVIEW -->
|
2011-05-04 11:40:00 -04:00
|
|
|
<!-- ================================================================ -->
|
|
|
|
|
2020-01-10 05:02:10 -05:00
|
|
|
<set var="webview_additional_include">
|
|
|
|
<if cond="TOOLKIT=='MSW'">$(TOP_SRCDIR)3rdparty/webview2/build/native/include</if>
|
|
|
|
</set>
|
|
|
|
|
2021-02-26 14:33:36 -05:00
|
|
|
<set var="webview_additional_include_wrl">
|
|
|
|
<if cond="TOOLKIT=='MSW' and IS_MSVC=='0'">$(TOP_SRCDIR)include/wx/msw/wrl</if>
|
|
|
|
</set>
|
|
|
|
|
2021-02-28 09:10:38 -05:00
|
|
|
<set var="webview_edge_pragma_warning">
|
|
|
|
<if cond="TOOLKIT=='MSW' and IS_MSVC=='0'">-Wno-unknown-pragmas</if>
|
|
|
|
</set>
|
|
|
|
|
2011-08-19 06:45:16 -04:00
|
|
|
<dll id="webviewdll" template="wx_dll"
|
|
|
|
cond="SHARED=='1' and USE_GUI=='1' and USE_WEBVIEW=='1' and MONOLITHIC=='0'">
|
2011-05-04 11:40:00 -04:00
|
|
|
<define>WXUSINGDLL</define>
|
2011-08-19 06:45:16 -04:00
|
|
|
<define>WXMAKINGDLL_WEBVIEW</define>
|
|
|
|
<sources>$(WEBVIEW_SRC)</sources>
|
2011-05-04 11:40:00 -04:00
|
|
|
<library>coredll</library>
|
|
|
|
<library>basedll</library>
|
2014-10-16 09:33:08 -04:00
|
|
|
<ldlibs>$(EXTRALIBS_WEBVIEW)</ldlibs>
|
2011-08-19 06:45:16 -04:00
|
|
|
<msvc-headers>$(WEBVIEW_HDR)</msvc-headers>
|
2021-02-26 14:33:36 -05:00
|
|
|
<include>$(webview_additional_include_wrl)</include>
|
2020-01-10 05:02:10 -05:00
|
|
|
<include>$(webview_additional_include)</include>
|
2021-02-28 09:10:38 -05:00
|
|
|
<cxxflags-mingw>$(webview_edge_pragma_warning)</cxxflags-mingw>
|
2011-05-04 11:40:00 -04:00
|
|
|
</dll>
|
|
|
|
|
2011-08-19 06:45:16 -04:00
|
|
|
<lib id="webviewlib" template="wx_lib"
|
|
|
|
cond="SHARED=='0' and USE_GUI=='1' and USE_WEBVIEW=='1' and MONOLITHIC=='0'">
|
|
|
|
<sources>$(WEBVIEW_SRC)</sources>
|
|
|
|
<msvc-headers>$(WEBVIEW_HDR)</msvc-headers>
|
2021-02-26 14:33:36 -05:00
|
|
|
<include>$(webview_additional_include_wrl)</include>
|
2020-01-10 05:02:10 -05:00
|
|
|
<include>$(webview_additional_include)</include>
|
2021-02-28 09:10:38 -05:00
|
|
|
<cxxflags-mingw>$(webview_edge_pragma_warning)</cxxflags-mingw>
|
2011-05-04 11:40:00 -04:00
|
|
|
</lib>
|
|
|
|
|
2011-08-19 06:45:16 -04:00
|
|
|
<wxshortcut id="wxwebview" cond="MONOLITHIC=='0' and USE_WEBVIEW=='1'"/>
|
2011-05-04 11:40:00 -04:00
|
|
|
|
2011-08-19 06:45:16 -04:00
|
|
|
<set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">webview=webviewlib+webviewdll</set>
|
2011-05-04 11:40:00 -04:00
|
|
|
|
2003-07-16 18:27:21 -04:00
|
|
|
<!-- ================================================================ -->
|
|
|
|
<!-- OpenGL -->
|
|
|
|
<!-- ================================================================ -->
|
|
|
|
|
|
|
|
<!-- included by wx.bkl from opengl.bkl -->
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2004-04-01 15:20:57 -05:00
|
|
|
<set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">gl=gllib+gldll</set>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
|
|
|
|
|
|
|
<!-- ================================================================ -->
|
|
|
|
<!-- QA -->
|
|
|
|
<!-- ================================================================ -->
|
|
|
|
|
|
|
|
<dll id="qadll" template="wx_dll"
|
|
|
|
cond="SHARED=='1' and USE_GUI=='1' and USE_QA=='1' and MONOLITHIC=='0'">
|
|
|
|
<define>WXUSINGDLL</define>
|
|
|
|
<define>WXMAKINGDLL_QA</define>
|
|
|
|
<sources>$(QA_SRC)</sources>
|
|
|
|
<msvc-headers>$(QA_HDR)</msvc-headers>
|
2005-03-26 20:51:36 -05:00
|
|
|
<library>coredll</library>
|
2005-03-20 19:11:06 -05:00
|
|
|
<library>basedll</library>
|
|
|
|
<library>xmldll</library>
|
|
|
|
</dll>
|
|
|
|
|
|
|
|
<lib id="qalib" template="wx_lib"
|
|
|
|
cond="SHARED=='0' and USE_GUI=='1' and USE_QA=='1' and MONOLITHIC=='0'">
|
|
|
|
<sources>$(QA_SRC)</sources>
|
|
|
|
<msvc-headers>$(QA_HDR)</msvc-headers>
|
|
|
|
</lib>
|
|
|
|
|
2007-03-19 12:12:19 -04:00
|
|
|
<wxshortcut id="wxqa" cond="MONOLITHIC=='0' and USE_QA=='1'"/>
|
|
|
|
|
2005-03-20 19:11:06 -05:00
|
|
|
<set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">qa=qalib+qadll</set>
|
|
|
|
|
2003-07-20 18:00:40 -04:00
|
|
|
<!-- ================================================================ -->
|
|
|
|
<!-- XML -->
|
|
|
|
<!-- ================================================================ -->
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2003-07-20 18:00:40 -04:00
|
|
|
<dll id="xmldll" template="wx_base_dll"
|
2021-07-07 03:55:12 -04:00
|
|
|
cond="SHARED=='1' and USE_XML=='1' and MONOLITHIC=='0'">
|
2003-07-20 18:00:40 -04:00
|
|
|
<define>WXUSINGDLL</define>
|
|
|
|
<define>WXMAKINGDLL_XML</define>
|
|
|
|
<sources>$(XML_SRC)</sources>
|
2003-07-27 05:50:55 -04:00
|
|
|
<msvc-headers>$(XML_HDR)</msvc-headers>
|
2003-07-20 18:00:40 -04:00
|
|
|
<library>basedll</library>
|
|
|
|
<ldlibs>$(EXTRALIBS_XML)</ldlibs>
|
|
|
|
</dll>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2003-07-20 18:00:40 -04:00
|
|
|
<lib id="xmllib" template="wx_base_lib"
|
2021-07-07 03:55:12 -04:00
|
|
|
cond="SHARED=='0' and USE_XML=='1' and MONOLITHIC=='0'">
|
2003-07-20 18:00:40 -04:00
|
|
|
<sources>$(XML_SRC)</sources>
|
2003-07-27 05:50:55 -04:00
|
|
|
<msvc-headers>$(XML_HDR)</msvc-headers>
|
2003-07-20 18:00:40 -04:00
|
|
|
</lib>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2021-07-07 03:55:12 -04:00
|
|
|
<wxshortcut id="wxxml" cond="USE_XML=='1' and MONOLITHIC=='0'"/>
|
2007-03-19 12:12:19 -04:00
|
|
|
|
2004-04-01 15:20:57 -05:00
|
|
|
<set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">xml=xmllib+xmldll</set>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2004-09-20 14:41:19 -04:00
|
|
|
<!-- ================================================================ -->
|
|
|
|
<!-- XRC -->
|
|
|
|
<!-- ================================================================ -->
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2004-09-20 14:41:19 -04:00
|
|
|
<dll id="xrcdll" template="wx_dll"
|
2021-07-07 03:55:12 -04:00
|
|
|
cond="SHARED=='1' and USE_XML=='1' and USE_XRC=='1' and MONOLITHIC=='0'">
|
2004-09-20 14:41:19 -04:00
|
|
|
<define>WXUSINGDLL</define>
|
|
|
|
<define>WXMAKINGDLL_XRC</define>
|
|
|
|
<sources>$(XRC_SRC)</sources>
|
2007-01-22 08:07:27 -05:00
|
|
|
<library>$(htmldll_library_link)</library>
|
2004-09-20 14:41:19 -04:00
|
|
|
<library>coredll</library>
|
|
|
|
<library>xmldll</library>
|
|
|
|
<library>basedll</library>
|
|
|
|
<msvc-headers>$(XRC_HDR)</msvc-headers>
|
|
|
|
</dll>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2004-09-20 14:41:19 -04:00
|
|
|
<lib id="xrclib" template="wx_lib"
|
|
|
|
cond="SHARED=='0' and USE_XRC=='1' and MONOLITHIC=='0'">
|
|
|
|
<sources>$(XRC_SRC)</sources>
|
|
|
|
<msvc-headers>$(XRC_HDR)</msvc-headers>
|
|
|
|
</lib>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2007-03-19 12:12:19 -04:00
|
|
|
<wxshortcut id="wxxrc" cond="MONOLITHIC=='0' and USE_XRC=='1'"/>
|
|
|
|
|
2004-09-20 14:41:19 -04:00
|
|
|
<set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">xrc=xrclib+xrcdll</set>
|
2005-03-20 19:11:06 -05:00
|
|
|
|
2006-06-06 09:12:07 -04:00
|
|
|
<!-- ================================================================ -->
|
|
|
|
<!-- AUI -->
|
|
|
|
<!-- ================================================================ -->
|
|
|
|
|
|
|
|
<dll id="auidll" template="wx_dll"
|
|
|
|
cond="SHARED=='1' and USE_AUI=='1' and MONOLITHIC=='0'">
|
|
|
|
<define>WXUSINGDLL</define>
|
|
|
|
<define>WXMAKINGDLL_AUI</define>
|
|
|
|
<sources>$(AUI_SRC)</sources>
|
|
|
|
<library>coredll</library>
|
|
|
|
<library>basedll</library>
|
|
|
|
<msvc-headers>$(AUI_HDR)</msvc-headers>
|
|
|
|
</dll>
|
|
|
|
|
|
|
|
<lib id="auilib" template="wx_lib"
|
|
|
|
cond="SHARED=='0' and USE_AUI=='1' and MONOLITHIC=='0'">
|
|
|
|
<sources>$(AUI_SRC)</sources>
|
|
|
|
<msvc-headers>$(AUI_HDR)</msvc-headers>
|
|
|
|
</lib>
|
2007-03-19 12:12:19 -04:00
|
|
|
|
|
|
|
<wxshortcut id="wxaui" cond="MONOLITHIC=='0' and USE_AUI=='1'"/>
|
2006-06-06 09:12:07 -04:00
|
|
|
|
|
|
|
<set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">aui=auilib+auidll</set>
|
2014-05-15 18:32:17 -04:00
|
|
|
|
2009-09-16 08:06:02 -04:00
|
|
|
<!-- ================================================================ -->
|
|
|
|
<!-- RIBBON -->
|
|
|
|
<!-- ================================================================ -->
|
|
|
|
|
|
|
|
<dll id="ribbondll" template="wx_dll"
|
|
|
|
cond="SHARED=='1' and USE_RIBBON=='1' and MONOLITHIC=='0'">
|
|
|
|
<define>WXUSINGDLL</define>
|
|
|
|
<define>WXMAKINGDLL_RIBBON</define>
|
|
|
|
<sources>$(RIBBON_SRC)</sources>
|
|
|
|
<library>coredll</library>
|
|
|
|
<library>basedll</library>
|
|
|
|
<msvc-headers>$(RIBBON_HDR)</msvc-headers>
|
|
|
|
</dll>
|
|
|
|
|
|
|
|
<lib id="ribbonlib" template="wx_lib"
|
|
|
|
cond="SHARED=='0' and USE_RIBBON=='1' and MONOLITHIC=='0'">
|
|
|
|
<sources>$(RIBBON_SRC)</sources>
|
|
|
|
<msvc-headers>$(RIBBON_HDR)</msvc-headers>
|
|
|
|
</lib>
|
|
|
|
|
|
|
|
<wxshortcut id="wxribbon" cond="MONOLITHIC=='0' and USE_RIBBON=='1'"/>
|
|
|
|
|
|
|
|
<set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">ribbon=ribbonlib+ribbondll</set>
|
2006-06-06 09:12:07 -04:00
|
|
|
|
2008-09-12 16:57:41 -04:00
|
|
|
<!-- ================================================================ -->
|
|
|
|
<!-- PROPGRID -->
|
|
|
|
<!-- ================================================================ -->
|
|
|
|
|
|
|
|
<dll id="propgriddll" template="wx_dll"
|
|
|
|
cond="SHARED=='1' and USE_PROPGRID=='1' and MONOLITHIC=='0'">
|
|
|
|
<define>WXUSINGDLL</define>
|
|
|
|
<define>WXMAKINGDLL_PROPGRID</define>
|
|
|
|
<sources>$(PROPGRID_SRC)</sources>
|
|
|
|
<library>coredll</library>
|
|
|
|
<library>basedll</library>
|
|
|
|
<msvc-headers>$(PROPGRID_HDR)</msvc-headers>
|
|
|
|
</dll>
|
|
|
|
|
|
|
|
<lib id="propgridlib" template="wx_lib"
|
|
|
|
cond="SHARED=='0' and USE_PROPGRID=='1' and MONOLITHIC=='0'">
|
|
|
|
<sources>$(PROPGRID_SRC)</sources>
|
|
|
|
<msvc-headers>$(PROPGRID_HDR)</msvc-headers>
|
|
|
|
</lib>
|
|
|
|
|
|
|
|
<wxshortcut id="wxpropgrid" cond="MONOLITHIC=='0' and USE_PROPGRID=='1'"/>
|
|
|
|
|
|
|
|
<set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">propgrid=propgridlib+propgriddll</set>
|
|
|
|
|
2006-06-29 03:16:39 -04:00
|
|
|
<!-- ================================================================ -->
|
|
|
|
<!-- RICHTEXT -->
|
|
|
|
<!-- ================================================================ -->
|
|
|
|
|
|
|
|
<dll id="richtextdll" template="wx_dll"
|
2021-07-07 03:55:12 -04:00
|
|
|
cond="SHARED=='1' and USE_RICHTEXT=='1' and USE_XML=='1' and MONOLITHIC=='0'">
|
2006-06-29 03:16:39 -04:00
|
|
|
<define>WXUSINGDLL</define>
|
2006-06-29 03:50:32 -04:00
|
|
|
<define>WXMAKINGDLL_RICHTEXT</define>
|
2006-06-29 03:16:39 -04:00
|
|
|
<sources>$(RICHTEXT_SRC)</sources>
|
2007-01-22 08:07:27 -05:00
|
|
|
<library>$(htmldll_library_link)</library>
|
2006-07-03 13:22:02 -04:00
|
|
|
<library>xmldll</library>
|
2006-06-29 03:16:39 -04:00
|
|
|
<library>coredll</library>
|
|
|
|
<library>basedll</library>
|
|
|
|
<msvc-headers>$(RICHTEXT_HDR)</msvc-headers>
|
|
|
|
</dll>
|
|
|
|
|
|
|
|
<lib id="richtextlib" template="wx_lib"
|
|
|
|
cond="SHARED=='0' and USE_RICHTEXT=='1' and MONOLITHIC=='0'">
|
|
|
|
<sources>$(RICHTEXT_SRC)</sources>
|
|
|
|
<msvc-headers>$(RICHTEXT_HDR)</msvc-headers>
|
|
|
|
</lib>
|
2007-03-19 12:12:19 -04:00
|
|
|
|
|
|
|
<wxshortcut id="wxrichtext" cond="MONOLITHIC=='0' and USE_RICHTEXT=='1'"/>
|
2006-06-29 03:16:39 -04:00
|
|
|
|
|
|
|
<set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">richtext=richtextlib+richtextdll</set>
|
|
|
|
|
2007-04-05 02:27:23 -04:00
|
|
|
<!-- ================================================================ -->
|
|
|
|
<!-- STC -->
|
|
|
|
<!-- ================================================================ -->
|
|
|
|
|
2010-07-24 20:18:57 -04:00
|
|
|
<template id="stc_base" template="wxscintilla_cppflags">
|
2007-04-05 02:27:23 -04:00
|
|
|
<library>wxscintilla</library>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<dll id="stcdll" template="wx_dll,stc_base"
|
|
|
|
cond="SHARED=='1' and USE_STC=='1' and MONOLITHIC=='0'">
|
|
|
|
<define>WXUSINGDLL</define>
|
|
|
|
<define>WXMAKINGDLL_STC</define>
|
|
|
|
<sources>$(STC_SRC)</sources>
|
|
|
|
<library>coredll</library>
|
|
|
|
<library>basedll</library>
|
2020-05-10 23:04:49 -04:00
|
|
|
<ldlibs>$(EXTRALIBS_STC)</ldlibs>
|
2007-04-05 02:27:23 -04:00
|
|
|
<msvc-headers>$(STC_HDR)</msvc-headers>
|
|
|
|
</dll>
|
|
|
|
|
|
|
|
<lib id="stclib" template="wx_lib,stc_base"
|
|
|
|
cond="SHARED=='0' and USE_STC=='1' and MONOLITHIC=='0'">
|
|
|
|
<sources>$(STC_SRC)</sources>
|
|
|
|
<msvc-headers>$(STC_HDR)</msvc-headers>
|
|
|
|
</lib>
|
2020-01-10 05:02:10 -05:00
|
|
|
|
2007-04-05 02:27:23 -04:00
|
|
|
<wxshortcut id="wxstc" cond="MONOLITHIC=='0' and USE_STC=='1'"/>
|
|
|
|
|
|
|
|
<set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">stc=stclib+stcdll</set>
|
|
|
|
|
2003-06-23 15:50:43 -04:00
|
|
|
</makefile>
|