| 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 | arrays/arrays.cpp |
| 30 | datetime/datetimetest.cpp |
| 31 | fileconf/fileconftest.cpp |
| 32 | filekind/filekind.cpp |
| 33 | filename/filenametest.cpp |
| 34 | filesys/filesystest.cpp |
| 35 | fontmap/fontmaptest.cpp |
| 36 | formatconverter/formatconvertertest.cpp |
| 37 | hashes/hashes.cpp |
| 38 | lists/lists.cpp |
| 39 | longlong/longlongtest.cpp |
| 40 | mbconv/mbconvtest.cpp |
| 41 | regex/regextest.cpp |
| 42 | regex/wxregextest.cpp |
| 43 | scopeguard/scopeguardtest.cpp |
| 44 | strings/strings.cpp |
| 45 | strings/stdstrings.cpp |
| 46 | strings/tokenizer.cpp |
| 47 | strings/unicode.cpp |
| 48 | strings/crt.cpp |
| 49 | streams/bstream.cpp |
| 50 | streams/datastreamtest.cpp |
| 51 | streams/ffilestream.cpp |
| 52 | streams/filestream.cpp |
| 53 | streams/largefile.cpp |
| 54 | streams/memstream.cpp |
| 55 | streams/sstream.cpp |
| 56 | streams/tempfile.cpp |
| 57 | streams/textstreamtest.cpp |
| 58 | streams/zlibstream.cpp |
| 59 | uris/uris.cpp |
| 60 | </sources> |
| 61 | <wx-lib>net</wx-lib> |
| 62 | <wx-lib>base</wx-lib> |
| 63 | </exe> |
| 64 | |
| 65 | |
| 66 | <exe id="test_gui" template="wx_sample,wx_test" |
| 67 | template_append="wx_append" |
| 68 | cond="USE_GUI=='1'"> |
| 69 | |
| 70 | <!-- link against GUI libraries, but be a console app: --> |
| 71 | <app-type>console</app-type> |
| 72 | |
| 73 | <sources> |
| 74 | test.cpp |
| 75 | geometry/rect.cpp |
| 76 | geometry/size.cpp |
| 77 | geometry/point.cpp |
| 78 | </sources> |
| 79 | <wx-lib>core</wx-lib> |
| 80 | <wx-lib>base</wx-lib> |
| 81 | </exe> |
| 82 | |
| 83 | |
| 84 | <wx-data id="data"> |
| 85 | <files>testdata.fc</files> |
| 86 | </wx-data> |
| 87 | |
| 88 | </makefile> |