implement authorisation check
[src/app-framework-binder.git] / src / CMakeLists.txt
index 8d0121a..2f97fd1 100644 (file)
@@ -22,6 +22,9 @@ endif(CMAKE_C_COMPILER_VERSION VERSION_LESS 4.9)
 
 INCLUDE(FindPkgConfig)
 
+ADD_SUBDIRECTORY(genskel)
+ADD_SUBDIRECTORY(tests)
+
 ADD_DEFINITIONS(-DBINDING_INSTALL_DIR="${binding_install_dir}")
 # Always add INFER_EXTENSION (more details in afb-hreq.c)
 ADD_DEFINITIONS(-DINFER_EXTENSION)
@@ -54,34 +57,43 @@ INCLUDE_DIRECTORIES(
 )
 
 ADD_LIBRARY(afb-lib STATIC
+       afb-api.c
        afb-api-dbus.c
        afb-api-so.c
+       afb-api-so-v1.c
+       afb-api-so-v2.c
        afb-api-ws.c
-       afb-apis.c
+       afb-apiset.c
+       afb-auth.c
        afb-common.c
        afb-config.c
        afb-context.c
+       afb-cred.c
+       afb-ditf.c
        afb-evt.c
        afb-hook.c
        afb-hreq.c
        afb-hsrv.c
        afb-hswitch.c
        afb-method.c
+       afb-monitor.c
        afb-msg-json.c
        afb-session.c
-       afb-sig-handler.c
-       afb-svc.c
+       afb-stub-ws.c
        afb-subcall.c
-       afb-thread.c
+       afb-svc.c
        afb-websock.c
        afb-ws-client.c
        afb-ws-json1.c
        afb-ws.c
        afb-wsj1.c
+       afb-xreq.c
+       jobs.c
        locale-root.c
+       sd-fds.c
+       sig-monitor.c
        verbose.c
        websock.c
-       sd-fds.c
 )
 
 ###########################################