]> git.saurik.com Git - wxWidgets.git/blob - tests/test.bkl
fix bug with adding entries to a root group containing only subgroups (as shown by...
[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 uris/uris.cpp
71 vectors/vectors.cpp
72 </sources>
73 <wx-lib>net</wx-lib>
74 <wx-lib>base</wx-lib>
75 </exe>
76
77
78 <exe id="test_gui" template="wx_sample,wx_test"
79 template_append="wx_append"
80 cond="USE_GUI=='1'">
81
82 <!-- link against GUI libraries, but be a console app: -->
83 <app-type>console</app-type>
84
85 <sources>
86 test.cpp
87 geometry/rect.cpp
88 geometry/size.cpp
89 geometry/point.cpp
90 config/config.cpp
91 controls/textctrltest.cpp
92 </sources>
93 <wx-lib>core</wx-lib>
94 <wx-lib>base</wx-lib>
95 </exe>
96
97
98 <wx-data id="data">
99 <files>testdata.fc</files>
100 </wx-data>
101
102 <template id="catalog">
103 <dstdir>$(BUILDDIR)/intl/$(id)</dstdir>
104 <srcdir>$(SRCDIR)/intl/$(id)</srcdir>
105 <files>internat.po internat.mo</files>
106 </template>
107
108 <wx-data id="fr" template="catalog"/>
109
110
111 <!-- BENCHMARKS -->
112
113 <exe id="printfbench" template="wx_sample_console,wx_test"
114 template_append="wx_append_base">
115 <sources>
116 benchmarks/printfbench.cpp
117 </sources>
118 <wx-lib>base</wx-lib>
119 </exe>
120
121
122 </makefile>