]>
Commit | Line | Data |
---|---|---|
670ec357 | 1 | <?xml version="1.0" ?> |
7d5ab151 | 2 | <!-- $Id$ --> |
670ec357 VS |
3 | |
4 | <makefile> | |
5 | ||
6 | <include file="../build/bakefiles/common_samples.bkl"/> | |
7 | ||
a0744a6b VS |
8 | <template id="wx_test"> |
9 | <cppflags>$(CPPUNIT_CFLAGS)</cppflags> | |
10 | <ldflags>$(CPPUNIT_LIBS)</ldflags> | |
3e8f9a49 | 11 | |
8899b155 RN |
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> | |
a0744a6b | 21 | </template> |
8899b155 | 22 | |
a0744a6b VS |
23 | <exe id="test" template="wx_sample_console,wx_test" |
24 | template_append="wx_append_base"> | |
670ec357 VS |
25 | <sources> |
26 | test.cpp | |
00375592 | 27 | archive/archivetest.cpp |
dd65d8c8 | 28 | arrays/arrays.cpp |
a9e99461 RN |
29 | datetime/datetimetest.cpp |
30 | fileconf/fileconftest.cpp | |
31 | filename/filenametest.cpp | |
32 | filesys/filesystest.cpp | |
33 | fontmap/fontmaptest.cpp | |
34 | formatconverter/formatconvertertest.cpp | |
f9c3d39b | 35 | hashes/hashes.cpp |
7d9cfc54 | 36 | lists/lists.cpp |
a9e99461 RN |
37 | longlong/longlongtest.cpp |
38 | mbconv/mbconvtest.cpp | |
39 | regex/regextest.cpp | |
40 | regex/wxregextest.cpp | |
1cd53e88 | 41 | strings/strings.cpp |
405b7d91 | 42 | strings/stdstrings.cpp |
387f829e | 43 | strings/unicode.cpp |
cf8ee08b | 44 | strings/crt.cpp |
7735998c | 45 | streams/bstream.cpp |
2f4bebe8 | 46 | streams/datastreamtest.cpp |
7735998c VS |
47 | streams/ffilestream.cpp |
48 | streams/filestream.cpp | |
49 | streams/memstream.cpp | |
32d49041 | 50 | streams/sstream.cpp |
ba854691 | 51 | streams/textstreamtest.cpp |
7735998c | 52 | streams/zlibstream.cpp |
d37da5ef | 53 | uris/uris.cpp |
670ec357 | 54 | </sources> |
d37da5ef | 55 | <wx-lib>net</wx-lib> |
670ec357 VS |
56 | <wx-lib>base</wx-lib> |
57 | </exe> | |
3e8f9a49 | 58 | |
a0744a6b VS |
59 | |
60 | <exe id="test_gui" template="wx_sample,wx_test" | |
61 | template_append="wx_append" | |
62 | cond="USE_GUI=='1'"> | |
98a50e20 VS |
63 | |
64 | <!-- link against GUI libraries, but be a console app: --> | |
65 | <app-type>console</app-type> | |
3e8f9a49 | 66 | |
a0744a6b VS |
67 | <sources> |
68 | test.cpp | |
e07e8195 | 69 | geometry/rect.cpp |
3e8f9a49 WS |
70 | geometry/size.cpp |
71 | geometry/point.cpp | |
a0744a6b VS |
72 | </sources> |
73 | <wx-lib>core</wx-lib> | |
74 | <wx-lib>base</wx-lib> | |
75 | </exe> | |
76 | ||
670ec357 | 77 | |
387f829e VS |
78 | <wx-data id="data"> |
79 | <files>testdata.fc</files> | |
80 | </wx-data> | |
81 | ||
670ec357 | 82 | </makefile> |