wxWidgets/samples/ipc/ipc.bkl
Tobias Taschner 8282c1be0f Remove Windows CE support
Windows CE doesn't seem to be supported by Microsoft any longer. Last CE
release was in early 2013 and the PocketPC and Smartphone targets supported by
wxWidgets are long gone.

The build files where already removed in an earlier cleanup this commit
removes all files, every #ifdef and all documentation regarding the Windows CE
support.

Closes https://github.com/wxWidgets/wxWidgets/pull/81
2015-09-23 00:52:30 +02:00

45 lines
1.4 KiB
XML

<?xml version="1.0" ?>
<makefile>
<include file="../../build/bakefiles/common_samples.bkl"/>
<if cond="FORMAT=='gnu'">
<!-- as we can't (easily) test for GUI, build them always -->
<set var="cond_build_gui">1</set>
</if>
<if cond="FORMAT!='gnu'">
<set var="cond_build_gui">USE_GUI=='1'</set>
</if>
<exe id="ipcclient" template="wx_sample" template_append="wx_append" cond="$(cond_build_gui)">
<sources>client.cpp</sources>
<headers>client.h connection.h ipcsetup.h</headers>
<wx-lib>core</wx-lib>
<wx-lib>net</wx-lib>
<wx-lib>base</wx-lib>
</exe>
<exe id="ipcserver" template="wx_sample" template_append="wx_append" cond="$(cond_build_gui)">
<sources>server.cpp</sources>
<headers>server.h connection.h ipcsetup.h</headers>
<wx-lib>core</wx-lib>
<wx-lib>net</wx-lib>
<wx-lib>base</wx-lib>
</exe>
<exe id="baseipcclient" template="wx_sample_console" template_append="wx_append_base">
<sources>baseclient.cpp</sources>
<headers>connection.h ipcsetup.h</headers>
<wx-lib>net</wx-lib>
<wx-lib>base</wx-lib>
</exe>
<exe id="baseipcserver" template="wx_sample_console" template_append="wx_append_base">
<sources>baseserver.cpp</sources>
<headers>connection.h ipcsetup.h</headers>
<wx-lib>net</wx-lib>
<wx-lib>base</wx-lib>
</exe>
</makefile>