]>
Commit | Line | Data |
---|---|---|
1 | <?xml version="1.0" ?> | |
2 | <!-- $Id$ --> | |
3 | ||
4 | <makefile> | |
5 | ||
6 | <include file="../../../build/bakefiles/common_contrib.bkl"/> | |
7 | ||
8 | <set var="GIZMOS_SRC"> | |
9 | dynamicsash.cpp | |
10 | editlbox.cpp | |
11 | ledctrl.cpp | |
12 | multicell.cpp | |
13 | splittree.cpp | |
14 | statpict.cpp | |
15 | </set> | |
16 | ||
17 | <set var="GIZMOS_XRC_SRC"> | |
18 | xh_statpict.cpp | |
19 | </set> | |
20 | ||
21 | <headers template="wx_contrib_headers"> | |
22 | <files> | |
23 | wx/gizmos/dynamicsash.h | |
24 | wx/gizmos/editlbox.h | |
25 | wx/gizmos/ledctrl.h | |
26 | wx/gizmos/multicell.h | |
27 | wx/gizmos/splittree.h | |
28 | wx/gizmos/statpict.h | |
29 | wx/gizmos/gizmos.h | |
30 | wx/gizmos/xh_statpict.h | |
31 | </files> | |
32 | </headers> | |
33 | ||
34 | <dll id="gizmosdll" template="wx_contrib_dll" cond="SHARED=='1'"> | |
35 | <define>WXUSINGDLL</define> | |
36 | <define>WXMAKINGDLL_GIZMOS</define> | |
37 | <sources>$(GIZMOS_SRC)</sources> | |
38 | <wx-lib>core</wx-lib> | |
39 | <wx-lib>base</wx-lib> | |
40 | </dll> | |
41 | ||
42 | <dll id="gizmos_xrcdll" template="wx_contrib_dll" | |
43 | cond="SHARED=='1' and USE_XRC=='1'"> | |
44 | <define>WXUSINGDLL</define> | |
45 | <define>WXMAKINGDLL_GIZMOS_XRC</define> | |
46 | <sources>$(GIZMOS_XRC_SRC)</sources> | |
47 | <library>gizmosdll</library> | |
48 | <wx-lib>xrc</wx-lib> | |
49 | <wx-lib>xml</wx-lib> | |
50 | <wx-lib>core</wx-lib> | |
51 | <wx-lib>base</wx-lib> | |
52 | </dll> | |
53 | ||
54 | <lib id="gizmoslib" template="wx_contrib_lib" cond="SHARED=='0'"> | |
55 | <sources>$(GIZMOS_SRC)</sources> | |
56 | </lib> | |
57 | ||
58 | <lib id="gizmos_xrclib" template="wx_contrib_lib" | |
59 | cond="SHARED=='0' and USE_XRC=='1'"> | |
60 | <sources>$(GIZMOS_XRC_SRC)</sources> | |
61 | </lib> | |
62 | ||
63 | <set var="MSVC6PRJ_MERGED_TARGETS" append="1">gizmos=gizmoslib+gizmosdll</set> | |
64 | <set var="MSVC6PRJ_MERGED_TARGETS" append="1">gizmos_xrc=gizmos_xrclib+gizmos_xrcdll</set> | |
65 | ||
66 | </makefile> |