]>
Commit | Line | Data |
---|---|---|
fe0895cf VS |
1 | <?xml version="1.0" ?> |
2 | <makefile> | |
3 | ||
4 | <include file="../../build/bakefiles/common_samples.bkl"/> | |
5 | ||
c16ab217 | 6 | <set var="GENERIC_DIALOGS_IN_NATIVE_BUILDS"> |
f50ff87b | 7 | <if cond="TOOLKIT=='MSW' and WXUNIV=='0' and SHARED=='0'"> |
c16ab217 WS |
8 | $(WXTOPDIR)src/generic/colrdlgg.cpp |
9 | $(WXTOPDIR)src/generic/dirdlgg.cpp | |
10 | $(WXTOPDIR)src/generic/filedlgg.cpp | |
11 | $(WXTOPDIR)src/generic/fontdlgg.cpp | |
63c83961 | 12 | </if> |
f50ff87b | 13 | <if cond="TOOLKIT=='MAC' and WXUNIV=='0' and SHARED=='0'"> |
c16ab217 WS |
14 | $(WXTOPDIR)src/generic/colrdlgg.cpp |
15 | $(WXTOPDIR)src/generic/dirdlgg.cpp | |
16 | $(WXTOPDIR)src/generic/filedlgg.cpp | |
63c83961 | 17 | </if> |
f50ff87b | 18 | <if cond="TOOLKIT=='PM' and WXUNIV=='0' and SHARED=='0'"> |
c16ab217 WS |
19 | $(WXTOPDIR)src/generic/fontdlgg.cpp |
20 | $(WXTOPDIR)src/generic/filedlgg.cpp | |
63c83961 WS |
21 | </if> |
22 | </set> | |
23 | ||
fe0895cf | 24 | <exe id="dialogs" template="wx_sample" template_append="wx_append"> |
63c83961 WS |
25 | <sources> |
26 | dialogs.cpp | |
c16ab217 | 27 | $(GENERIC_DIALOGS_IN_NATIVE_BUILDS) |
63c83961 | 28 | </sources> |
cadffe1b | 29 | <wx-lib>adv</wx-lib> |
fe0895cf | 30 | <wx-lib>core</wx-lib> |
9c859e43 | 31 | <wx-lib>base</wx-lib> |
fe0895cf VS |
32 | <win32-res>dialogs.rc</win32-res> |
33 | </exe> | |
34 | ||
35 | <wx-data id="data"> | |
36 | <files>tips.txt</files> | |
37 | </wx-data> | |
38 | ||
39 | </makefile> |