]>
Commit | Line | Data |
---|---|---|
fe0895cf VS |
1 | <?xml version="1.0" ?> |
2 | <makefile> | |
3 | ||
4 | <include file="../../build/bakefiles/common_samples.bkl"/> | |
5 | ||
2804f77d VZ |
6 | <if cond="FORMAT=='gnu'"> |
7 | <!-- as we can't (easily) test for GUI, build them always --> | |
8 | <set var="cond_build_gui">1</set> | |
9 | </if> | |
10 | <if cond="FORMAT!='gnu'"> | |
11 | <set var="cond_build_gui">USE_GUI=='1'</set> | |
12 | </if> | |
13 | ||
14 | <exe id="client" template="wx_sample" template_append="wx_append" cond="$(cond_build_gui)"> | |
9539ad0b | 15 | <sources>client.cpp</sources> |
fe0895cf | 16 | <wx-lib>core</wx-lib> |
7c4728f6 | 17 | <wx-lib>net</wx-lib> |
9c859e43 | 18 | <wx-lib>base</wx-lib> |
9539ad0b MB |
19 | </exe> |
20 | ||
2804f77d | 21 | <exe id="server" template="wx_sample" template_append="wx_append" cond="$(cond_build_gui)"> |
9539ad0b MB |
22 | <sources>server.cpp</sources> |
23 | <wx-lib>core</wx-lib> | |
7c4728f6 | 24 | <wx-lib>net</wx-lib> |
9539ad0b | 25 | <wx-lib>base</wx-lib> |
fe0895cf VS |
26 | </exe> |
27 | ||
2804f77d VZ |
28 | <exe id="baseclient" template="wx_sample_console" |
29 | template_append="wx_append_base"> | |
30 | <sources>baseclient.cpp</sources> | |
31 | <wx-lib>net</wx-lib> | |
32 | <wx-lib>base</wx-lib> | |
33 | </exe> | |
34 | ||
35 | <exe id="baseserver" template="wx_sample_console" | |
36 | template_append="wx_append_base"> | |
37 | <sources>baseserver.cpp</sources> | |
38 | <wx-lib>net</wx-lib> | |
39 | <wx-lib>base</wx-lib> | |
40 | </exe> | |
41 | ||
fe0895cf | 42 | </makefile> |