]>
Commit | Line | Data |
---|---|---|
670ec357 | 1 | <?xml version="1.0" ?> |
7d5ab151 | 2 | <!-- $Id$ --> |
670ec357 VS |
3 | |
4 | <makefile> | |
5 | ||
08bc5490 VS |
6 | <!-- FIXME: temporary hack. |
7 | Override this on command line, e.g. | |
8 | bakefile_gen -f autoconf -b ../../tests/*.bkl -DBUILD_STREAM_TESTS=1 | |
9 | --> | |
10 | <set var="BUILD_STREAM_TESTS">0</set> | |
11 | ||
12 | <set var="STREAMS_FILES"> | |
13 | <if cond="BUILD_STREAM_TESTS=='1'"> | |
14 | streams/bstream.cpp | |
15 | streams/ffilestream.cpp | |
16 | streams/filestream.cpp | |
17 | streams/memstream.cpp | |
18 | streams/zlibstream.cpp | |
19 | </if> | |
20 | </set> | |
21 | ||
670ec357 VS |
22 | <include file="../build/bakefiles/common_samples.bkl"/> |
23 | ||
24 | <exe id="test" template="wx_test_console" | |
25 | template_append="wx_append_base"> | |
26 | <sources> | |
27 | test.cpp | |
28 | mbconv/main.cpp | |
7d5ab151 | 29 | formatconverter/formatconverter.cpp |
e70833fb | 30 | regex/regex.cpp |
4827cbd9 | 31 | filesys/filesys.cpp |
cf1014a2 | 32 | arrays/arrays.cpp |
1b035b8c | 33 | longlong/longlong.cpp |
08bc5490 | 34 | $(STREAMS_FILES) |
670ec357 VS |
35 | </sources> |
36 | <wx-lib>base</wx-lib> | |
37 | </exe> | |
38 | ||
39 | </makefile> |