]>
Commit | Line | Data |
---|---|---|
1 | <?xml version="1.0" ?> | |
2 | <makefile> | |
3 | ||
4 | <include file="../../build/bakefiles/common_samples.bkl"/> | |
5 | ||
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="ipcclient" template="wx_sample" template_append="wx_append" cond="$(cond_build_gui)"> | |
15 | <sources>client.cpp</sources> | |
16 | <headers>client.h connection.h ipcsetup.h</headers> | |
17 | <wx-lib>core</wx-lib> | |
18 | <wx-lib>net</wx-lib> | |
19 | <wx-lib>base</wx-lib> | |
20 | </exe> | |
21 | ||
22 | <exe id="ipcserver" template="wx_sample" template_append="wx_append" cond="$(cond_build_gui)"> | |
23 | <sources>server.cpp</sources> | |
24 | <headers>server.h connection.h ipcsetup.h</headers> | |
25 | <wx-lib>core</wx-lib> | |
26 | <wx-lib>net</wx-lib> | |
27 | <wx-lib>base</wx-lib> | |
28 | </exe> | |
29 | ||
30 | <!-- WinCE doesn't have console applications: --> | |
31 | <if cond="FORMAT!='msevc4prj'"> | |
32 | <exe id="baseipcclient" template="wx_sample_console" template_append="wx_append_base"> | |
33 | <sources>baseclient.cpp</sources> | |
34 | <headers>connection.h ipcsetup.h</headers> | |
35 | <wx-lib>net</wx-lib> | |
36 | <wx-lib>base</wx-lib> | |
37 | </exe> | |
38 | ||
39 | <exe id="baseipcserver" template="wx_sample_console" template_append="wx_append_base"> | |
40 | <sources>baseserver.cpp</sources> | |
41 | <headers>connection.h ipcsetup.h</headers> | |
42 | <wx-lib>net</wx-lib> | |
43 | <wx-lib>base</wx-lib> | |
44 | </exe> | |
45 | </if> | |
46 | ||
47 | </makefile> |