]>
Commit | Line | Data |
---|---|---|
acf38e5f VS |
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 | |
1b53faea VS |
15 | </set> |
16 | ||
17 | <set var="GIZMOS_XRC_SRC"> | |
92c45b12 | 18 | xh_statpict.cpp |
acf38e5f VS |
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 | |
e4a7bbfc | 29 | wx/gizmos/gizmos.h |
1b53faea | 30 | wx/gizmos/xh_statpict.h |
acf38e5f VS |
31 | </files> |
32 | </headers> | |
33 | ||
34 | <dll id="gizmosdll" template="wx_contrib_dll" cond="SHARED=='1'"> | |
936a13b5 VS |
35 | <define>WXUSINGDLL</define> |
36 | <define>WXMAKINGDLL_GIZMOS</define> | |
acf38e5f | 37 | <sources>$(GIZMOS_SRC)</sources> |
1b53faea | 38 | <wx-lib>core</wx-lib> |
936a13b5 | 39 | <wx-lib>base</wx-lib> |
1b53faea VS |
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> | |
acf38e5f | 49 | <wx-lib>core</wx-lib> |
1b53faea | 50 | <wx-lib>base</wx-lib> |
acf38e5f | 51 | </dll> |
e4a7bbfc | 52 | |
acf38e5f VS |
53 | <lib id="gizmoslib" template="wx_contrib_lib" cond="SHARED=='0'"> |
54 | <sources>$(GIZMOS_SRC)</sources> | |
55 | </lib> | |
1b53faea VS |
56 | |
57 | <lib id="gizmos_xrclib" template="wx_contrib_lib" | |
58 | cond="SHARED=='0' and USE_XRC=='1'"> | |
59 | <sources>$(GIZMOS_XRC_SRC)</sources> | |
60 | </lib> | |
dd672d67 | 61 | |
fdec2f7d | 62 | <set var="MSVC6PRJ_MERGED_TARGETS" append="1">gizmos=gizmoslib+gizmosdll</set> |
1b53faea | 63 | <set var="MSVC6PRJ_MERGED_TARGETS" append="1">gizmos_xrc=gizmos_xrclib+gizmos_xrcdll</set> |
acf38e5f VS |
64 | |
65 | </makefile> |