]>
Commit | Line | Data |
---|---|---|
15e8daec VS |
1 | <?xml version="1.0" ?> |
2 | <!-- $Id$ --> | |
3 | ||
4 | <makefile> | |
5 | ||
6 | <include file="../../../build/bakefiles/common_contrib.bkl"/> | |
7 | ||
8 | <set var="NETUTILS_SRC"> | |
9 | email.cpp | |
10 | smapi.cpp | |
11 | web.cpp | |
12 | </set> | |
13 | ||
14 | <headers template="wx_contrib_headers"> | |
15 | <files> | |
16 | wx/net/email.h | |
17 | wx/net/msg.h | |
18 | wx/net/smapi.h | |
19 | wx/net/web.h | |
20 | </files> | |
21 | </headers> | |
22 | ||
23 | <dll id="netutilsdll" template="wx_contrib_dll" cond="SHARED=='1'"> | |
24 | <define>WXUSINGDLL</define> | |
25 | <define>WXMAKINGDLL_NETUTILS</define> | |
26 | <sources>$(NETUTILS_SRC)</sources> | |
27 | <wx-lib>core</wx-lib> | |
28 | <wx-lib>base</wx-lib> | |
29 | </dll> | |
30 | ||
31 | <lib id="netutilslib" template="wx_contrib_lib" cond="SHARED=='0'"> | |
32 | <sources>$(NETUTILS_SRC)</sources> | |
33 | </lib> | |
dd672d67 | 34 | |
fdec2f7d | 35 | <set var="MSVC6PRJ_MERGED_TARGETS" append="1">netutils=netutilslib+netutilsdll</set> |
15e8daec VS |
36 | |
37 | </makefile> |