2004-03-03 17:56:16 -05:00
|
|
|
<?xml version="1.0" ?>
|
2004-03-06 06:23:49 -05:00
|
|
|
<!-- $Id$ -->
|
2004-03-03 17:56:16 -05:00
|
|
|
|
|
|
|
<makefile>
|
|
|
|
|
|
|
|
<include file="../build/bakefiles/common_samples.bkl"/>
|
|
|
|
|
2004-12-12 07:35:45 -05:00
|
|
|
<template id="wx_test">
|
|
|
|
<cppflags>$(CPPUNIT_CFLAGS)</cppflags>
|
|
|
|
<ldflags>$(CPPUNIT_LIBS)</ldflags>
|
2004-12-14 15:29:20 -05:00
|
|
|
|
2004-11-22 00:00:19 -05:00
|
|
|
<if cond="WX_DISABLE_PRECOMP_HEADERS=='0'">
|
|
|
|
<if cond="FORMAT!='autoconf' and TOOLKIT=='MSW'">
|
|
|
|
<sources>dummy.cpp</sources>
|
|
|
|
<precomp-headers-gen>dummy.cpp</precomp-headers-gen>
|
|
|
|
</if>
|
|
|
|
<precomp-headers-header>testprec.h</precomp-headers-header>
|
|
|
|
<precomp-headers>on</precomp-headers>
|
|
|
|
<precomp-headers-file>testprec_$(id)</precomp-headers-file>
|
|
|
|
</if>
|
2004-12-12 07:35:45 -05:00
|
|
|
</template>
|
2004-11-22 00:00:19 -05:00
|
|
|
|
2004-12-12 07:35:45 -05:00
|
|
|
<exe id="test" template="wx_sample_console,wx_test"
|
|
|
|
template_append="wx_append_base">
|
2004-03-03 17:56:16 -05:00
|
|
|
<sources>
|
|
|
|
test.cpp
|
2004-11-10 18:58:38 -05:00
|
|
|
archive/archivetest.cpp
|
2004-10-27 18:47:26 -04:00
|
|
|
arrays/arrays.cpp
|
2004-10-31 00:41:27 -04:00
|
|
|
datetime/datetimetest.cpp
|
|
|
|
fileconf/fileconftest.cpp
|
|
|
|
filename/filenametest.cpp
|
|
|
|
filesys/filesystest.cpp
|
|
|
|
fontmap/fontmaptest.cpp
|
|
|
|
formatconverter/formatconvertertest.cpp
|
2004-05-22 13:52:44 -04:00
|
|
|
hashes/hashes.cpp
|
2004-12-08 17:39:22 -05:00
|
|
|
lists/lists.cpp
|
2004-10-31 00:41:27 -04:00
|
|
|
longlong/longlongtest.cpp
|
|
|
|
mbconv/mbconvtest.cpp
|
|
|
|
regex/regextest.cpp
|
|
|
|
regex/wxregextest.cpp
|
2004-04-20 14:55:09 -04:00
|
|
|
strings/strings.cpp
|
2004-05-21 03:59:14 -04:00
|
|
|
strings/stdstrings.cpp
|
2004-04-30 16:26:14 -04:00
|
|
|
strings/unicode.cpp
|
2004-06-03 15:48:31 -04:00
|
|
|
strings/crt.cpp
|
2004-04-18 15:26:20 -04:00
|
|
|
streams/bstream.cpp
|
2004-11-24 17:31:25 -05:00
|
|
|
streams/datastreamtest.cpp
|
2004-04-18 15:26:20 -04:00
|
|
|
streams/ffilestream.cpp
|
|
|
|
streams/filestream.cpp
|
2005-02-04 04:43:47 -05:00
|
|
|
streams/largefile.cpp
|
2004-04-18 15:26:20 -04:00
|
|
|
streams/memstream.cpp
|
2004-09-19 18:00:16 -04:00
|
|
|
streams/sstream.cpp
|
2004-11-21 13:26:38 -05:00
|
|
|
streams/textstreamtest.cpp
|
2004-04-18 15:26:20 -04:00
|
|
|
streams/zlibstream.cpp
|
2004-11-04 16:54:29 -05:00
|
|
|
uris/uris.cpp
|
2004-03-03 17:56:16 -05:00
|
|
|
</sources>
|
2004-11-04 16:54:29 -05:00
|
|
|
<wx-lib>net</wx-lib>
|
2004-03-03 17:56:16 -05:00
|
|
|
<wx-lib>base</wx-lib>
|
|
|
|
</exe>
|
2004-12-14 15:29:20 -05:00
|
|
|
|
2004-12-12 07:35:45 -05:00
|
|
|
|
|
|
|
<exe id="test_gui" template="wx_sample,wx_test"
|
|
|
|
template_append="wx_append"
|
|
|
|
cond="USE_GUI=='1'">
|
2004-12-12 14:25:46 -05:00
|
|
|
|
|
|
|
<!-- link against GUI libraries, but be a console app: -->
|
|
|
|
<app-type>console</app-type>
|
2004-12-14 15:29:20 -05:00
|
|
|
|
2004-12-12 07:35:45 -05:00
|
|
|
<sources>
|
|
|
|
test.cpp
|
2004-12-12 14:23:19 -05:00
|
|
|
geometry/rect.cpp
|
2004-12-14 15:29:20 -05:00
|
|
|
geometry/size.cpp
|
|
|
|
geometry/point.cpp
|
2004-12-12 07:35:45 -05:00
|
|
|
</sources>
|
|
|
|
<wx-lib>core</wx-lib>
|
|
|
|
<wx-lib>base</wx-lib>
|
|
|
|
</exe>
|
|
|
|
|
2004-03-03 17:56:16 -05:00
|
|
|
|
2004-04-30 16:26:14 -04:00
|
|
|
<wx-data id="data">
|
|
|
|
<files>testdata.fc</files>
|
|
|
|
</wx-data>
|
|
|
|
|
2004-03-03 17:56:16 -05:00
|
|
|
</makefile>
|