]> git.saurik.com Git - wxWidgets.git/blob - tests/test.bkl
added missing headers for PCH-less compilation
[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 events/evthandler.cpp
41 events/timertest.cpp
42 exec/exec.cpp
43 filekind/filekind.cpp
44 filename/filenametest.cpp
45 filesys/filesystest.cpp
46 fontmap/fontmaptest.cpp
47 formatconverter/formatconvertertest.cpp
48 hashes/hashes.cpp
49 intl/intltest.cpp
50 lists/lists.cpp
51 longlong/longlongtest.cpp
52 mbconv/convautotest.cpp
53 mbconv/mbconvtest.cpp
54 misc/misctests.cpp
55 net/ipc.cpp
56 net/socket.cpp
57 regex/regextest.cpp
58 regex/wxregextest.cpp
59 scopeguard/scopeguardtest.cpp
60 strings/iostream.cpp
61 strings/strings.cpp
62 strings/stdstrings.cpp
63 strings/tokenizer.cpp
64 strings/unichar.cpp
65 strings/unicode.cpp
66 strings/vararg.cpp
67 strings/crt.cpp
68 strings/vsnprintf.cpp
69 streams/bstream.cpp
70 streams/datastreamtest.cpp
71 streams/ffilestream.cpp
72 streams/fileback.cpp
73 streams/filestream.cpp
74 streams/iostreams.cpp
75 streams/largefile.cpp
76 streams/memstream.cpp
77 streams/socketstream.cpp
78 streams/sstream.cpp
79 streams/tempfile.cpp
80 streams/textstreamtest.cpp
81 streams/zlibstream.cpp
82 textfile/textfiletest.cpp
83 thread/atomic.cpp
84 thread/queue.cpp
85 thread/tls.cpp
86 uris/uris.cpp
87 vectors/vectors.cpp
88 weakref/evtconnection.cpp
89 weakref/weakref.cpp
90 xlocale/xlocale.cpp
91 xml/xmltest.cpp
92 </sources>
93 <wx-lib>net</wx-lib>
94 <wx-lib>base</wx-lib>
95 <wx-lib>xml</wx-lib>
96 </exe>
97
98
99 <exe id="test_gui" template="wx_sample,wx_test"
100 template_append="wx_append"
101 cond="USE_GUI=='1'">
102
103 <!-- link against GUI libraries, but be a console app: -->
104 <app-type>console</app-type>
105
106 <sources>
107 test.cpp
108 geometry/rect.cpp
109 geometry/size.cpp
110 geometry/point.cpp
111 graphics/measuring.cpp
112 config/config.cpp
113 controls/comboboxtest.cpp
114 controls/headerctrltest.cpp
115 controls/listctrltest.cpp
116 controls/textctrltest.cpp
117 controls/textentrytest.cpp
118 controls/treectrltest.cpp
119 events/clone.cpp
120 events/propagation.cpp
121 font/fonttest.cpp
122 image/rawbmp.cpp
123 html/htmlwindow.cpp
124 misc/guifuncs.cpp
125 misc/selstoretest.cpp
126 misc/garbage.cpp
127 misc/settings.cpp
128 <!--
129 This one is intentionally duplicated here (it is also part of
130 non-GUI test) as sockets behave differently in console and GUI
131 applications.
132 -->
133 net/socket.cpp
134 window/clientsize.cpp
135 window/setsize.cpp
136 </sources>
137 <wx-lib>media</wx-lib>
138 <wx-lib>xrc</wx-lib>
139 <wx-lib>xml</wx-lib>
140 <wx-lib>adv</wx-lib>
141 <wx-lib>html</wx-lib>
142 <wx-lib>core</wx-lib>
143 <wx-lib>net</wx-lib>
144 <wx-lib>base</wx-lib>
145 </exe>
146
147
148 <wx-data id="data">
149 <files>testdata.fc</files>
150 </wx-data>
151
152 <template id="catalog">
153 <dstdir>$(BUILDDIR)/intl/$(id)</dstdir>
154 <srcdir>$(SRCDIR)/intl/$(id)</srcdir>
155 <files>internat.po internat.mo</files>
156 </template>
157
158 <wx-data id="fr" template="catalog"/>
159
160
161 <!-- BENCHMARKS -->
162
163 <exe id="printfbench" template="wx_sample_console,wx_test"
164 template_append="wx_append_base">
165 <sources>
166 benchmarks/printfbench.cpp
167 </sources>
168 <wx-lib>base</wx-lib>
169 </exe>
170
171 <fragment format="autoconf">
172 # notice the ugly hack with using CXXWARNINGS: we can't use CPPFLAGS as
173 # currently the value in the makefile would be ignored if we did, but
174 # warnings don't matter when we expect compilation to fail anyhow so we can
175 # use this variable to enable the compilation of code which is supposed to
176 # fail
177 failtest:
178 @$(RM) test_evthandler.o
179 @for d in GLOBAL STATIC METHOD FUNCTOR NO_HANDLER DERIVED WRONG_CLASS; do \
180 if $(MAKE) CXXWARNINGS=-DTEST_INVALID_BIND_$$d test_evthandler.o 2>/dev/null; then \
181 echo "*** Compilation with TEST_INVALID_BIND_$$d unexpectedly succeeded.">&amp;2; \
182 exit 1; \
183 fi; \
184 done; \
185 exit 0
186
187 .PHONY: failtest
188 </fragment>
189
190 </makefile>