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=='PM' and WXUNIV=='0' and SHARED=='0'">
22            $(WXTOPDIR)src/generic/fontdlgg.cpp
23            $(WXTOPDIR)src/generic/filedlgg.cpp
24        </if>
25    </set>
26
27    <exe id="dialogs" template="wx_sample" template_append="wx_append">
28        <sources>
29            dialogs.cpp
30            $(GENERIC_DIALOGS_IN_NATIVE_BUILDS)
31        </sources>
32        <wx-lib>adv</wx-lib>
33        <wx-lib>html</wx-lib>
34        <wx-lib>xml</wx-lib>
35        <wx-lib>core</wx-lib>
36        <wx-lib>base</wx-lib>
37        <win32-res>dialogs.rc</win32-res>
38    </exe>
39
40    <wx-data id="data">
41        <files>tips.txt</files>
42    </wx-data>
43
44</makefile>
45