From 916843c373bc653bc472e6353631134b42d490f2 Mon Sep 17 00:00:00 2001 From: Pantelis Antoniou Date: Thu, 8 Mar 2018 20:39:36 +0200 Subject: initial network service binding The AGL network service binding exposes connman apis via the AGL application framework. All network connectivity technologies are supported via the binding, limited only by the underlying connman daemon. Bug-AGL: SPEC-1540 Change-Id: Id73cfc98c7abe97cb655a4fc40d440422fa75803 Signed-off-by: Pantelis Antoniou [Cleanups to whitespace and naming to match other services] Signed-off-by: Matt Porter --- test/CMakeLists.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/CMakeLists.txt (limited to 'test/CMakeLists.txt') diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt new file mode 100644 index 0000000..79065a4 --- /dev/null +++ b/test/CMakeLists.txt @@ -0,0 +1,16 @@ +########################################### +# build and install afb-client-demo +########################################### +PKG_CHECK_MODULES(libsystemd libsystemd>=222) +PKG_CHECK_MODULES(libafbwsc libafbwsc>=5.99) + +ADD_EXECUTABLE(agl-service-network-ctl agl-service-network-ctl.c) + +TARGET_LINK_LIBRARIES(agl-service-network-ctl + ${link_libraries} + ${libsystemd_LDFLAGS} + ${libafbwsc_LDFLAGS} +) +INSTALL(TARGETS agl-service-network-ctl + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) + -- cgit 1.2.3-korg