]>
Commit | Line | Data |
---|---|---|
1 | <?xml version="1.0" ?> | |
2 | <makefile> | |
3 | ||
4 | <include file="../../build/bakefiles/common_samples.bkl"/> | |
5 | ||
6 | <set var="GENERIC_DIALOGS_IN_NATIVE_BUILDS"> | |
7 | <if cond="OUT_OF_TREE_MAKEFILES=='1'"> | |
8 | <!-- no files that are not part of the sample in this case --> | |
9 | </if> | |
10 | <if cond="TOOLKIT=='MSW' and WXUNIV=='0' and SHARED=='0'"> | |
11 | $(WXTOPDIR)src/generic/colrdlgg.cpp | |
12 | $(WXTOPDIR)src/generic/dirdlgg.cpp | |
13 | $(WXTOPDIR)src/generic/filedlgg.cpp | |
14 | $(WXTOPDIR)src/generic/fontdlgg.cpp | |
15 | </if> | |
16 | <if cond="TOOLKIT=='MAC' and WXUNIV=='0' and SHARED=='0'"> | |
17 | $(WXTOPDIR)src/generic/colrdlgg.cpp | |
18 | $(WXTOPDIR)src/generic/dirdlgg.cpp | |
19 | $(WXTOPDIR)src/generic/filedlgg.cpp | |
20 | </if> | |
21 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'"> | |
22 | $(WXTOPDIR)src/generic/filedlgg.cpp | |
23 | </if> | |
24 | <if cond="TOOLKIT=='PM' and WXUNIV=='0' and SHARED=='0'"> | |
25 | $(WXTOPDIR)src/generic/fontdlgg.cpp | |
26 | $(WXTOPDIR)src/generic/filedlgg.cpp | |
27 | </if> | |
28 | </set> | |
29 | ||
30 | <exe id="dialogs" template="wx_sample" template_append="wx_append"> | |
31 | <sources> | |
32 | dialogs.cpp | |
33 | $(GENERIC_DIALOGS_IN_NATIVE_BUILDS) | |
34 | </sources> | |
35 | <headers>dialogs.h</headers> | |
36 | <wx-lib>adv</wx-lib> | |
37 | <wx-lib>core</wx-lib> | |
38 | <wx-lib>base</wx-lib> | |
39 | </exe> | |
40 | ||
41 | <wx-data id="data"> | |
42 | <files>tips.txt</files> | |
43 | </wx-data> | |
44 | ||
45 | </makefile> |