Fedora 30 packaging fix issu
[src/app-framework-binder.git] / CMakeLists.txt
index 568eb42..4201a81 100644 (file)
@@ -1,5 +1,5 @@
 ###########################################################################
-# Copyright 2015, 2016, 2017 IoT.bzh
+# Copyright (C) 2015-2018 "IoT.bzh"
 #
 # author: José Bollo <jose.bollo@iot.bzh>
 #
@@ -23,7 +23,8 @@ PROJECT(afb-daemon C CXX)
 SET(PROJECT_NAME "AFB Daemon")
 SET(PROJECT_PRETTY_NAME "Application Framework Binder Daemon")
 SET(PROJECT_DESCRIPTION "Secured binder of API for clients of the Application framework")
-SET(PROJECT_VERSION "4.99-EERC1")
+set(AGLVERSION "7.0.0" CACHE STRING "Version of AGL")
+set(PROJECT_VERSION ${AGLVERSION} CACHE STRING "Version of the project can override AGLVERSION")
 set(PROJECT_URL "https://gerrit.automotivelinux.org/gerrit/gitweb?p=src/app-framework-binder.git;a=summary")
 
 SET(LIBAFBWSC_VERSION "1.1")
@@ -37,8 +38,17 @@ INCLUDE(CTest)
 
 ###########################################################################
 # possible settings
+
 set(AGL_DEVEL OFF CACHE BOOL "Activates developping features")
 set(INCLUDE_MONITORING OFF CACHE BOOL "Activates installation of monitoring")
+set(INCLUDE_SUPERVISOR OFF CACHE BOOL "Activates installation of supervisor")
+set(INCLUDE_DBUS_TRANSPARENCY OFF CACHE BOOL "Allows API transparency over DBUS")
+set(INCLUDE_LEGACY_BINDING_V1 OFF CACHE BOOL "Includes the legacy Binding API version 1")
+set(INCLUDE_LEGACY_BINDING_VDYN OFF CACHE BOOL "Includes the legacy Binding API version dynamic")
+set(AFS_SUPERVISION_SOCKET "@urn:AGL:afs:supervision:socket" CACHE STRING "Internal socket for supervision")
+set(AFS_SUPERVISOR_PORT 1619 CACHE STRING "Port of service for the supervisor")
+set(AFS_SUPERVISOR_TOKEN HELLO CACHE STRING "Secret token for the supervisor")
+set(UNITDIR_SYSTEM ${CMAKE_INSTALL_LIBDIR}/systemd/system CACHE STRING "Path to systemd system unit files")
 
 ###########################################################################
 
@@ -52,6 +62,7 @@ add_compile_options(-Werror=implicit-function-declaration)
 add_compile_options(-ffunction-sections -fdata-sections)
 add_compile_options(-fPIC)
 add_compile_options(-g)
+set (CMAKE_CXX_STANDARD 14)
 
 set(CMAKE_C_FLAGS_PROFILING    "-g -O2 -pg -Wp,-U_FORTIFY_SOURCE")
 set(CMAKE_C_FLAGS_DEBUG        "-g -ggdb -Wp,-U_FORTIFY_SOURCE")
@@ -80,16 +91,19 @@ PKG_CHECK_MODULES(openssl openssl)
 PKG_CHECK_MODULES(uuid uuid)
 PKG_CHECK_MODULES(cynara cynara-client)
 
+ADD_DEFINITIONS("-DAFS_SUPERVISION_SOCKET=\"${AFS_SUPERVISION_SOCKET}\"")
+ADD_DEFINITIONS("-DAFS_SUPERVISOR_TOKEN=\"${AFS_SUPERVISOR_TOKEN}\"")
+ADD_DEFINITIONS("-DAFS_SUPERVISOR_PORT=${AFS_SUPERVISOR_PORT}")
+
 IF(AGL_DEVEL)
        ADD_DEFINITIONS(-DAGL_DEVEL)
-endif()
+ENDIF()
 
 IF(cynara_FOUND)
        ADD_DEFINITIONS(-DBACKEND_PERMISSION_IS_CYNARA)
 ENDIF(cynara_FOUND)
 
 IF(HAVE_LIBMAGIC AND libsystemd_FOUND AND libmicrohttpd_FOUND AND openssl_FOUND AND uuid_FOUND)
-  SET(WITH_BINDER TRUE)
   ADD_DEFINITIONS(-DUSE_MAGIC_MIME_TYPE)
 ELSE()
   IF(NOT HAVE_LIBMAGIC)
@@ -108,10 +122,9 @@ ELSE()
   IF(NOT uuid_FOUND)
     MESSAGE(WARNING "Dependency to 'uuid' is missing")
   ENDIF()
-  IF(NOT ALLOW_NO_BINDER)
-    MESSAGE(FATAL_ERROR "Can't compile the binder, either define ALLOW_NO_BINDER or install dependencies")
+  IF(NOT ONLY_DEVTOOLS)
+    MESSAGE(FATAL_ERROR "Can't compile the binder, either define ONLY_DEVTOOLS or install dependencies")
   ENDIF()
-  SET(WITH_BINDER FALSE)
 ENDIF()
 
 ADD_DEFINITIONS(-DAFB_VERSION="${PROJECT_VERSION}")
@@ -140,34 +153,51 @@ SET(link_libraries
        -lrt
        )
 
-SET(binding_install_dir ${CMAKE_INSTALL_FULL_LIBDIR}/afb)
+ADD_SUBDIRECTORY(src/devtools)
 
-###########################################################################
-# activates the monitoring by default
-if(INCLUDE_MONITORING AND WITH_BINDER)
-       add_definitions(-DWITH_MONITORING_OPTION)
-       INSTALL(DIRECTORY
-               ${CMAKE_CURRENT_SOURCE_DIR}/test/monitoring
-               DESTINATION
-               ${binding_install_dir}
+IF(ONLY_DEVTOOLS)
+       MESSAGE(WARNING "Only DEVTOOLS are compiled, not the binder!")
+ELSE()
+       SET(binding_install_dir ${CMAKE_INSTALL_FULL_LIBDIR}/afb)
+
+       ###########################################################################
+       # activates the monitoring by default
+       if(INCLUDE_MONITORING AND NOT ONLY_DEVTOOLS)
+               add_definitions(-DWITH_MONITORING_OPTION)
+               INSTALL(DIRECTORY
+                       ${CMAKE_CURRENT_SOURCE_DIR}/test/monitoring
+                       DESTINATION
+                       ${binding_install_dir}
+               )
+       endif()
+
+       ###########################################################################
+
+       ADD_SUBDIRECTORY(src)
+       ADD_SUBDIRECTORY(src/tests)
+       ADD_SUBDIRECTORY(include)
+       ADD_SUBDIRECTORY(bindings)
+
+       ############################################################
+       # installs the pkgconfig files
+       CONFIGURE_FILE(afb-daemon.pc.in afb-daemon.pc @ONLY)
+       CONFIGURE_FILE(libafbwsc.pc.in libafbwsc.pc @ONLY)
+
+       INSTALL(FILES
+           ${CMAKE_CURRENT_BINARY_DIR}/afb-daemon.pc
+           ${CMAKE_CURRENT_BINARY_DIR}/libafbwsc.pc
+           DESTINATION
+           ${CMAKE_INSTALL_LIBDIR}/pkgconfig
        )
-endif()
 
-###########################################################################
+ENDIF()
 
-ADD_SUBDIRECTORY(src)
-ADD_SUBDIRECTORY(include)
-ADD_SUBDIRECTORY(bindings)
-
-############################################################
-# installs the pkgconfig files
-CONFIGURE_FILE(afb-daemon.pc.in afb-daemon.pc @ONLY)
-CONFIGURE_FILE(libafbwsc.pc.in libafbwsc.pc @ONLY)
-
-INSTALL(FILES
-    ${CMAKE_CURRENT_BINARY_DIR}/afb-daemon.pc
-    ${CMAKE_CURRENT_BINARY_DIR}/libafbwsc.pc
-    DESTINATION
-    ${CMAKE_INSTALL_LIBDIR}/pkgconfig
-    )
+IF(INCLUDE_SUPERVISOR)
+       CONFIGURE_FILE(afs-supervisor.service.in afs-supervisor.service @ONLY)
+       INSTALL(FILES
+           ${CMAKE_CURRENT_BINARY_DIR}/afs-supervisor.service
+           DESTINATION
+           ${UNITDIR_SYSTEM}
+       )
+ENDIF()