X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=CMakeLists.txt;h=ebda48f0b0d9c59e24f5a5160d8f96ae95b53877;hb=036629f2e6306f3e2bb520bc58565d9a9db28a45;hp=2efee1dd564e96c0e6f7ea55321a60f8be8a9d5f;hpb=24d000c2290126abf88204089d132229d63f9a05;p=src%2Fapp-framework-binder.git diff --git a/CMakeLists.txt b/CMakeLists.txt index 2efee1dd..ebda48f0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ ########################################################################### -# Copyright (C) 2015-2018 "IoT.bzh" +# Copyright (C) 2015-2019 "IoT.bzh" # # author: José Bollo # @@ -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 "5.99-FFRC0") +set(AGLVERSION "8.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,10 +38,16 @@ 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(AFS_SURPERVISION_SOCKET "@urn:AGL:afs:supervision:socket" CACHE STRING "Internal socket for supervision") + +option(AGL_DEVEL "Activates developping features" OFF) +option(INCLUDE_MONITORING "Activates installation of monitoring" OFF) + +option(INCLUDE_SUPERVISOR "Activates installation of supervisor" OFF) +option(INCLUDE_DBUS_TRANSPARENCY "Allows API transparency over DBUS" OFF) +option(INCLUDE_LEGACY_BINDING_V1 "Includes the legacy Binding API version 1" OFF) +option(INCLUDE_LEGACY_BINDING_VDYN "Includes the legacy Binding API version dynamic" OFF) + +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") @@ -56,11 +63,12 @@ add_compile_options(-Werror=maybe-uninitialized) add_compile_options(-Werror=implicit-function-declaration) add_compile_options(-ffunction-sections -fdata-sections) add_compile_options(-fPIC) -add_compile_options(-g) +add_compile_options(-g -O2) +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") -set(CMAKE_C_FLAGS_RELEASE "-g -O2") +set(CMAKE_C_FLAGS_PROFILING "-g -O2 -pg -U_FORTIFY_SOURCE") +set(CMAKE_C_FLAGS_DEBUG "-g -O2 -ggdb -U_FORTIFY_SOURCE") +set(CMAKE_C_FLAGS_RELEASE "-g -O3") set(CMAKE_C_FLAGS_CCOV "-g -O2 --coverage") ########################################################################### @@ -80,16 +88,14 @@ IF(HAVE_MAGIC_H) ENDIF(HAVE_MAGIC_H) PKG_CHECK_MODULES(libsystemd libsystemd>=222) -PKG_CHECK_MODULES(libmicrohttpd libmicrohttpd>=0.9.55) +PKG_CHECK_MODULES(libmicrohttpd libmicrohttpd>=0.9.60) PKG_CHECK_MODULES(openssl openssl) PKG_CHECK_MODULES(uuid uuid) PKG_CHECK_MODULES(cynara cynara-client) -ADD_DEFINITIONS("-DAFS_SURPERVISION_SOCKET=\"${AFS_SURPERVISION_SOCKET}\"") - -IF(AGL_DEVEL) - ADD_DEFINITIONS(-DAGL_DEVEL) -endif() +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(cynara_FOUND) ADD_DEFINITIONS(-DBACKEND_PERMISSION_IS_CYNARA) @@ -151,6 +157,7 @@ IF(ONLY_DEVTOOLS) MESSAGE(WARNING "Only DEVTOOLS are compiled, not the binder!") ELSE() SET(binding_install_dir ${CMAKE_INSTALL_FULL_LIBDIR}/afb) + SET(install_datadir ${CMAKE_INSTALL_FULL_DATADIR}/af-binder) ########################################################################### # activates the monitoring by default