]> git.saurik.com Git - wxWidgets.git/blob - tests/test.bkl
Don't ignore path when prompting for file in SaveAs()
[wxWidgets.git] / tests / test.bkl
1 <?xml version="1.0" ?>
2 <!-- $Id$ -->
3
4 <makefile>
5
6 <include file="../build/bakefiles/common_samples.bkl"/>
7
8 <template id="wx_test">
9 <cppflags>$(CPPUNIT_CFLAGS)</cppflags>
10 <ldflags>$(CPPUNIT_LIBS)</ldflags>
11
12 <if cond="WX_DISABLE_PRECOMP_HEADERS=='0'">
13 <if cond="FORMAT!='autoconf' and TOOLKIT=='MSW'">
14 <sources>dummy.cpp</sources>
15 <precomp-headers-gen>dummy.cpp</precomp-headers-gen>
16 </if>
17 <precomp-headers-header>testprec.h</precomp-headers-header>
18 <precomp-headers>on</precomp-headers>
19 <precomp-headers-file>testprec_$(id)</precomp-headers-file>
20 </if>
21 </template>
22
23 <exe id="test" template="wx_sample_console,wx_test"
24 template_append="wx_append_base">
25 <sources>
26 test.cpp
27 archive/archivetest.cpp
28 archive/ziptest.cpp
29 archive/tartest.cpp
30 arrays/arrays.cpp
31 base64/base64.cpp
32 config/fileconf.cpp
33 datetime/datetimetest.cpp
34 filekind/filekind.cpp
35 filename/filenametest.cpp
36 filesys/filesystest.cpp
37 fontmap/fontmaptest.cpp
38 formatconverter/formatconvertertest.cpp
39 hashes/hashes.cpp
40 intl/intltest.cpp
41 lists/lists.cpp
42 longlong/longlongtest.cpp
43 mbconv/convautotest.cpp
44 mbconv/mbconvtest.cpp
45 regex/regextest.cpp
46 regex/wxregextest.cpp
47 scopeguard/scopeguardtest.cpp
48 strings/iostream.cpp
49 strings/strings.cpp
50 strings/stdstrings.cpp
51 strings/tokenizer.cpp
52 strings/unichar.cpp
53 strings/unicode.cpp
54 strings/vararg.cpp
55 strings/crt.cpp
56 strings/vsnprintf.cpp
57 streams/bstream.cpp
58 streams/datastreamtest.cpp
59 streams/ffilestream.cpp
60 streams/fileback.cpp
61 streams/filestream.cpp
62 streams/largefile.cpp
63 streams/memstream.cpp
64 streams/sstream.cpp
65 streams/tempfile.cpp
66 streams/textstreamtest.cpp
67 streams/zlibstream.cpp
68 textfile/textfiletest.cpp
69 thread/atomic.cpp
70 thread/queue.cpp
71 uris/uris.cpp
72 vectors/vectors.cpp
73 </sources>
74 <wx-lib>net</wx-lib>
75 <wx-lib>base</wx-lib>
76 </exe>
77
78
79 <exe id="test_gui" template="wx_sample,wx_test"
80 template_append="wx_append"
81 cond="USE_GUI=='1'">
82
83 <!-- link against GUI libraries, but be a console app: -->
84 <app-type>console</app-type>
85
86 <sources>
87 test.cpp
88 geometry/rect.cpp
89 geometry/size.cpp
90 geometry/point.cpp
91 config/config.cpp
92 controls/textctrltest.cpp
93 </sources>
94 <wx-lib>core</wx-lib>
95 <wx-lib>base</wx-lib>
96 </exe>
97
98
99 <wx-data id="data">
100 <files>testdata.fc</files>
101 </wx-data>
102
103 <template id="catalog">
104 <dstdir>$(BUILDDIR)/intl/$(id)</dstdir>
105 <srcdir>$(SRCDIR)/intl/$(id)</srcdir>
106 <files>internat.po internat.mo</files>
107 </template>
108
109 <wx-data id="fr" template="catalog"/>
110
111
112 <!-- BENCHMARKS -->
113
114 <exe id="printfbench" template="wx_sample_console,wx_test"
115 template_append="wx_append_base">
116 <sources>
117 benchmarks/printfbench.cpp
118 </sources>
119 <wx-lib>base</wx-lib>
120 </exe>
121
122
123 </makefile>