File: monolithic.bkl

package info (click to toggle)
wxpython4.0 4.2.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 221,752 kB
  • sloc: cpp: 962,555; python: 230,573; ansic: 170,731; makefile: 51,756; sh: 9,342; perl: 1,564; javascript: 584; php: 326; xml: 200
file content (52 lines) | stat: -rw-r--r-- 1,795 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" ?>
<makefile>

    <set var="MONOLIB_STC_SRC">
        <if cond="USE_STC=='1'">
            $(STC_SRC)
        </if>
    </set>

    <set var="MONOLIB_GUI_SRC">
        <if cond="USE_GUI=='1'">
            $(CORE_SRC) $(MEDIA_SRC) $(HTML_SRC) $(WEBVIEW_SRC)
            $(QA_SRC) $(XRC_SRC) $(AUI_SRC) $(PROPGRID_SRC) $(RIBBON_SRC)
            $(RICHTEXT_SRC) $(MONOLIB_STC_SRC)
        </if>
    </set>
    <set var="MONOLIB_SRC">
        $(BASE_SRC) $(BASE_AND_GUI_SRC) $(NET_SRC) $(MONOLIB_GUI_SRC) $(XML_SRC)
    </set>

    <!-- settings common to mono{dll,lib} below -->
    <template id="wx_monolib_or_dll" template="wxscintilla_cppflags,webview_additional">
        <define>wxUSE_BASE=1</define>
        <sources>$(MONOLIB_SRC) $(PLUGIN_MONOLIB_SRC)</sources>
        <msvc-headers>$(ALL_HEADERS)</msvc-headers>
    </template>

    <dll id="monodll" template="wx_dll,wx_monolib_or_dll"
         cond="SHARED=='1' and MONOLITHIC=='1'">
        <define>WXMAKINGDLL</define>
        <ldlibs>$(EXTRALIBS_XML)</ldlibs>
        <ldlibs>$(EXTRALIBS_HTML)</ldlibs>
        <ldlibs>$(EXTRALIBS_MEDIA)</ldlibs>
        <ldlibs>$(EXTRALIBS_STC)</ldlibs>
        <ldlibs>$(PLUGIN_MONOLIB_EXTRALIBS)</ldlibs>
        <ldlibs>$(EXTRALIBS_WEBVIEW)</ldlibs>
        <library>$(wxscintilla_library_link)</library>
    </dll>

    <lib id="monolib" template="wx_lib,wx_monolib_or_dll"
         cond="SHARED=='0' and MONOLITHIC=='1'">
        <if cond="FORMAT=='watcom'">
            <set var="LIB_PAGESIZE" overwrite="1">8192</set>
        </if>
    </lib>


    <set var="MSVC6PRJ_MERGED_TARGETS_MONOLIB" append="1">mono=monolib+monodll</set>
    <!-- included by wx.bkl from opengl.bkl -->
    <set var="MSVC6PRJ_MERGED_TARGETS_MONOLIB" append="1">gl=gllib+gldll</set>

</makefile>