Remove explicit Debug build type
[src/app-framework-binder.git] / CMakeLists.txt
1 ###########################################################################
2 # Copyright 2015, 2016, 2017 IoT.bzh
3 #
4 # author: José Bollo <jose.bollo@iot.bzh>
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 ###########################################################################
18
19 CMAKE_MINIMUM_REQUIRED(VERSION 3.0)
20
21 PROJECT(afb-daemon C CXX)
22
23 SET(PROJECT_NAME "AFB Daemon")
24 SET(PROJECT_PRETTY_NAME "Application Framework Binder Daemon")
25 SET(PROJECT_DESCRIPTION "Secured binder of API for clients of the Application framework")
26 SET(PROJECT_VERSION "4.99-EERC1")
27 set(PROJECT_URL "https://gerrit.automotivelinux.org/gerrit/gitweb?p=src/app-framework-binder.git;a=summary")
28
29 SET(LIBAFBWSC_VERSION "1.0")
30 SET(LIBAFBWSC_SOVERSION "1")
31
32 INCLUDE(FindPkgConfig)
33 INCLUDE(CheckIncludeFiles)
34 INCLUDE(CheckLibraryExists)
35 INCLUDE(GNUInstallDirs)
36 INCLUDE(CTest)
37
38 ###########################################################################
39 # possible settings
40 set(AGL_DEVEL OFF CACHE BOOL "Activates developping features")
41 set(INCLUDE_MONITORING OFF CACHE BOOL "Activates installation of monitoring")
42
43 ###########################################################################
44
45 link_libraries(-Wl,--as-needed -Wl,--gc-sections -Wl,--no-undefined)
46
47 add_compile_options(-Wall -Wextra -Wconversion)
48 add_compile_options(-Wno-unused-parameter) # frankly not using a parameter does it care?
49 add_compile_options(-Wno-sign-compare -Wno-sign-conversion)
50 add_compile_options(-Werror=maybe-uninitialized)
51 add_compile_options(-Werror=implicit-function-declaration)
52 add_compile_options(-ffunction-sections -fdata-sections)
53 add_compile_options(-fPIC)
54 add_compile_options(-g)
55
56 set(CMAKE_C_FLAGS_PROFILING    "-g -O2 -pg -Wp,-U_FORTIFY_SOURCE")
57 set(CMAKE_C_FLAGS_DEBUG        "-g -ggdb -Wp,-U_FORTIFY_SOURCE")
58 set(CMAKE_C_FLAGS_RELEASE      "-g -O2")
59 set(CMAKE_C_FLAGS_CCOV         "-g -O2 --coverage")
60
61 ###########################################################################
62
63 INCLUDE(FindThreads)
64 FIND_PACKAGE(Threads)
65
66 PKG_CHECK_MODULES(json-c REQUIRED json-c)
67
68 CHECK_INCLUDE_FILES(magic.h HAVE_MAGIC_H)
69 CHECK_LIBRARY_EXISTS(magic magic_load "" HAVE_LIBMAGIC_SO)
70 IF(HAVE_MAGIC_H)
71   IF(HAVE_LIBMAGIC_SO)
72     SET(HAVE_LIBMAGIC "1")
73   ENDIF(HAVE_LIBMAGIC_SO)
74 ENDIF(HAVE_MAGIC_H)
75
76 IF(NOT HAVE_LIBMAGIC)
77   MESSAGE(FATAL_ERROR "\"magic.h\" or \"libmagic.so\" missing.
78     Please install the \"file-devel\" or \"libmagic-dev\" package !")
79 ENDIF(NOT HAVE_LIBMAGIC)
80 ADD_DEFINITIONS(-DUSE_MAGIC_MIME_TYPE)
81
82 PKG_CHECK_MODULES(libsystemd REQUIRED libsystemd>=222)
83 PKG_CHECK_MODULES(libmicrohttpd REQUIRED libmicrohttpd>=0.9.55)
84 PKG_CHECK_MODULES(openssl REQUIRED openssl)
85 PKG_CHECK_MODULES(uuid REQUIRED uuid)
86 PKG_CHECK_MODULES(cynara cynara-client)
87
88 IF(AGL_DEVEL)
89         ADD_DEFINITIONS(-DAGL_DEVEL)
90 endif()
91
92 IF(cynara_FOUND)
93         ADD_DEFINITIONS(-DBACKEND_PERMISSION_IS_CYNARA)
94 ENDIF(cynara_FOUND)
95
96 ADD_DEFINITIONS(-DAFB_VERSION="${PROJECT_VERSION}")
97
98 INCLUDE_DIRECTORIES(
99         ${INCLUDE_DIRS}
100         ${CMAKE_SOURCE_DIR}/include
101         ${json-c_INCLUDE_DIRS}
102         ${libsystemd_INCLUDE_DIRS}
103         ${libmicrohttpd_INCLUDE_DIRS}
104         ${uuid_INCLUDE_DIRS}
105         ${openssl_INCLUDE_DIRS}
106         ${cynara_INCLUDE_DIRS}
107 )
108
109 SET(link_libraries
110         ${CMAKE_THREAD_LIBS_INIT}
111         ${json-c_LDFLAGS}
112         ${libsystemd_LDFLAGS}
113         ${libmicrohttpd_LDFLAGS}
114         ${uuid_LDFLAGS}
115         ${openssl_LDFLAGS}
116         ${cynara_LDFLAGS}
117         -lmagic
118         -ldl
119         -lrt
120         )
121
122 SET(binding_install_dir ${CMAKE_INSTALL_FULL_LIBDIR}/afb)
123
124 ###########################################################################
125 # activates the monitoring by default
126 if(INCLUDE_MONITORING)
127         add_definitions(-DWITH_MONITORING_OPTION)
128         INSTALL(DIRECTORY
129                 ${CMAKE_CURRENT_SOURCE_DIR}/test/monitoring
130                 DESTINATION
131                 ${binding_install_dir}
132         )
133 endif()
134
135 ###########################################################################
136
137 ADD_SUBDIRECTORY(src)
138 ADD_SUBDIRECTORY(include)
139 ADD_SUBDIRECTORY(bindings)
140
141 ############################################################
142 # installs the pkgconfig files
143 CONFIGURE_FILE(afb-daemon.pc.in afb-daemon.pc @ONLY)
144 CONFIGURE_FILE(libafbwsc.pc.in libafbwsc.pc @ONLY)
145
146 INSTALL(FILES
147     ${CMAKE_CURRENT_BINARY_DIR}/afb-daemon.pc
148     ${CMAKE_CURRENT_BINARY_DIR}/libafbwsc.pc
149     DESTINATION
150     ${CMAKE_INSTALL_LIBDIR}/pkgconfig
151     )
152