]> git.saurik.com Git - wxWidgets.git/blob - tests/test.bkl
Converted various wxArrayPtrVoids to wxVectors
[wxWidgets.git] / tests / test.bkl
1 <?xml version="1.0" ?>
2 <!-- $Id$ -->
3
4 <makefile>
5 <!--
6 The use of PCH is disabled for samples by default but we do want to use
7 them for the test as this dramatically speeds up its compilation.
8 -->
9 <set var="WX_ENABLE_PRECOMP_HEADERS">1</set>
10
11 <include file="../build/bakefiles/common_samples.bkl"/>
12
13 <template id="wx_test">
14 <cppflags>$(CPPUNIT_CFLAGS)</cppflags>
15 <ldflags>$(CPPUNIT_LIBS)</ldflags>
16
17 <if cond="WX_DISABLE_PRECOMP_HEADERS=='0'">
18 <if cond="FORMAT!='autoconf' and TOOLKIT=='MSW'">
19 <sources>dummy.cpp</sources>
20 <precomp-headers-gen>dummy.cpp</precomp-headers-gen>
21 </if>
22 <precomp-headers-header>testprec.h</precomp-headers-header>
23 <precomp-headers>on</precomp-headers>
24 <precomp-headers-file>testprec_$(id)</precomp-headers-file>
25 </if>
26 </template>
27
28 <exe id="test" template="wx_sample_console,wx_test"
29 template_append="wx_append_base">
30 <sources>
31 test.cpp
32 archive/archivetest.cpp
33 archive/ziptest.cpp
34 archive/tartest.cpp
35 arrays/arrays.cpp
36 base64/base64.cpp
37 cmdline/cmdlinetest.cpp
38 config/fileconf.cpp
39 datetime/datetimetest.cpp
40 filekind/filekind.cpp
41 filename/filenametest.cpp
42 filesys/filesystest.cpp
43 fontmap/fontmaptest.cpp
44 formatconverter/formatconvertertest.cpp
45 hashes/hashes.cpp
46 intl/intltest.cpp
47 lists/lists.cpp
48 longlong/longlongtest.cpp
49 mbconv/convautotest.cpp
50 mbconv/mbconvtest.cpp
51 misc/misctests.cpp
52 net/ipc.cpp
53 regex/regextest.cpp
54 regex/wxregextest.cpp
55 scopeguard/scopeguardtest.cpp
56 strings/iostream.cpp
57 strings/strings.cpp
58 strings/stdstrings.cpp
59 strings/tokenizer.cpp
60 strings/unichar.cpp
61 strings/unicode.cpp
62 strings/vararg.cpp
63 strings/crt.cpp
64 strings/vsnprintf.cpp
65 streams/bstream.cpp
66 streams/datastreamtest.cpp
67 streams/ffilestream.cpp
68 streams/fileback.cpp
69 streams/filestream.cpp
70 streams/iostreams.cpp
71 streams/largefile.cpp
72 streams/memstream.cpp
73 streams/socketstream.cpp
74 streams/sstream.cpp
75 streams/tempfile.cpp
76 streams/textstreamtest.cpp
77 streams/zlibstream.cpp
78 textfile/textfiletest.cpp
79 thread/atomic.cpp
80 thread/queue.cpp
81 thread/tls.cpp
82 uris/uris.cpp
83 vectors/vectors.cpp
84 weakref/evtconnection.cpp
85 weakref/weakref.cpp
86 xlocale/xlocale.cpp
87 xml/xmltest.cpp
88 </sources>
89 <wx-lib>net</wx-lib>
90 <wx-lib>base</wx-lib>
91 <wx-lib>xml</wx-lib>
92 </exe>
93
94
95 <exe id="test_gui" template="wx_sample,wx_test"
96 template_append="wx_append"
97 cond="USE_GUI=='1'">
98
99 <!-- link against GUI libraries, but be a console app: -->
100 <app-type>console</app-type>
101
102 <sources>
103 test.cpp
104 geometry/rect.cpp
105 geometry/size.cpp
106 geometry/point.cpp
107 config/config.cpp
108 controls/comboboxtest.cpp
109 controls/textctrltest.cpp
110 controls/textentrytest.cpp
111 image/rawbmp.cpp
112 misc/guifuncs.cpp
113 misc/selstoretest.cpp
114 window/clientsize.cpp
115 window/setsize.cpp
116 </sources>
117 <wx-lib>core</wx-lib>
118 <wx-lib>base</wx-lib>
119 </exe>
120
121
122 <wx-data id="data">
123 <files>testdata.fc</files>
124 </wx-data>
125
126 <template id="catalog">
127 <dstdir>$(BUILDDIR)/intl/$(id)</dstdir>
128 <srcdir>$(SRCDIR)/intl/$(id)</srcdir>
129 <files>internat.po internat.mo</files>
130 </template>
131
132 <wx-data id="fr" template="catalog"/>
133
134
135 <!-- BENCHMARKS -->
136
137 <exe id="printfbench" template="wx_sample_console,wx_test"
138 template_append="wx_append_base">
139 <sources>
140 benchmarks/printfbench.cpp
141 </sources>
142 <wx-lib>base</wx-lib>
143 </exe>
144
145
146 </makefile>