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