Files
aqhomecontrol/aqhome/ipc/0BUILD
Martin Preuss 518a3a53f9 Heavy work on IPC.
We will now have a broker (aqhome-data) which stores data and distributes
value change messages among connected clients.
aqhomed will connect to that broker and send its values there.
aqhome-mqtt will also connect to the broker and send its values there.
Other clients can later connect to check for changes and react according
to rules.
2023-09-10 23:13:03 +02:00

90 lines
1.4 KiB
Plaintext

<?xml?>
<gwbuild>
<target type="ConvenienceLibrary" name="aqhipc" >
<includes type="c" >
$(gwenhywfar_cflags)
-I$(topsrcdir)
-I$(topbuilddir)
</includes>
<includes type="tm2" >
--include=$(builddir)
--include=$(srcdir)
</includes>
<define name="BUILDING_AQHOME" />
<setVar name="local/cflags">$(visibility_cflags)</setVar>
<setVar name="tm2flags" >
--api=AQHOME_API
</setVar>
<setVar name="local/typefiles" >
</setVar>
<setVar name="local/built_sources" >
</setVar>
<setVar name="local/built_headers_pub">
</setVar>
<setVar name="local/built_headers_priv" >
</setVar>
<headers dist="false" install="$(pkgincludedir)/ipc" >
$(local/built_headers_pub)
</headers>
<headers dist="true" install="$(pkgincludedir)/ipc" >
endpoint_ipc.h
msg_ipc_result.h
msg_ipc_qwords.h
msg_ipc_tag16.h
</headers>
<headers dist="true" >
endpoint_ipc_p.h
</headers>
<sources>
$(local/typefiles)
endpoint_ipc.c
msg_ipc_result.c
msg_ipc_qwords.c
msg_ipc_tag16.c
</sources>
<extradist>
</extradist>
<useTargets>
aqhipcnodes
aqhipcdata
</useTargets>
<subdirs>
nodes
data
</subdirs>
</target>
</gwbuild>