Rework CMakeList.txt
[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 PROJECT(afb-daemon C)
20
21 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
22 SET(CMAKE_BUILD_TYPE Debug)
23 SET(CMAKE_POSITION_INDEPENDENT_CODE ON)
24
25 SET(PROJECT_NAME "AFB Daemon")
26 SET(PROJECT_PRETTY_NAME "Application Framework Binder Daemon")
27 SET(PROJECT_DESCRIPTION "Secured binder of API for clients of the Application framework")
28 SET(PROJECT_VERSION "1.0")
29 SET(PROJECT_URL "https://github.com/iotbzh/afb-daemon")
30
31 SET(LIBAFBWSC_VERSION "1.0")
32 SET(LIBAFBWSC_SOVERSION "1")
33
34 INCLUDE(FindPkgConfig)
35 INCLUDE(CheckIncludeFiles)
36 INCLUDE(CheckLibraryExists)
37 INCLUDE(GNUInstallDirs)
38 INCLUDE(CTest)
39
40 ###########################################################################
41 # possible settings
42 set(AGL_DEVEL OFF CACHE BOOL "Activates developping features")
43 set(INCLUDE_MONITORING OFF CACHE BOOL "Activates installation of monitoring")
44
45 ###########################################################################
46
47 link_libraries(-Wl,--as-needed -Wl,--gc-sections -Wl,--no-undefined)
48
49 add_compile_options(-Wall -Wextra -Wconversion)
50 add_compile_options(-Wno-unused-parameter) # frankly not using a parameter does it care?
51 add_compile_options(-Wno-sign-compare -Wno-sign-conversion)
52 add_compile_options(-Werror=maybe-uninitialized)
53 add_compile_options(-Werror=implicit-function-declaration)
54 add_compile_options(-ffunction-sections -fdata-sections)
55 add_compile_options(-fPIC)
56 add_compile_options(-g)
57
58 set(CMAKE_C_FLAGS_PROFILING    "-g -O2 -pg -Wp,-U_FORTIFY_SOURCE")
59 set(CMAKE_C_FLAGS_DEBUG        "-g -ggdb -Wp,-U_FORTIFY_SOURCE")
60 set(CMAKE_C_FLAGS_RELEASE      "-g -O2")
61 set(CMAKE_C_FLAGS_CCOV         "-g -O2 --coverage")
62
63 ###########################################################################
64
65 INCLUDE(FindThreads)
66 FIND_PACKAGE(Threads)
67
68 PKG_CHECK_MODULES(json-c REQUIRED json-c)
69
70 CHECK_INCLUDE_FILES(magic.h HAVE_MAGIC_H)
71 CHECK_LIBRARY_EXISTS(magic magic_load "" HAVE_LIBMAGIC_SO)
72 IF(HAVE_MAGIC_H)
73   IF(HAVE_LIBMAGIC_SO)
74     SET(HAVE_LIBMAGIC "1")
75   ENDIF(HAVE_LIBMAGIC_SO)
76 ENDIF(HAVE_MAGIC_H)
77
78 IF(NOT HAVE_LIBMAGIC)
79   MESSAGE(FATAL_ERROR "\"magic.h\" or \"libmagic.so\" missing.
80     Please install the \"file-devel\" or \"libmagic-dev\" package !")
81 ENDIF(NOT HAVE_LIBMAGIC)
82 ADD_DEFINITIONS(-DUSE_MAGIC_MIME_TYPE)
83
84 PKG_CHECK_MODULES(libsystemd REQUIRED libsystemd>=222)
85 PKG_CHECK_MODULES(libmicrohttpd REQUIRED libmicrohttpd>=0.9.55)
86 PKG_CHECK_MODULES(openssl REQUIRED openssl)
87 PKG_CHECK_MODULES(uuid REQUIRED uuid)
88 PKG_CHECK_MODULES(cynara cynara-client)
89
90 IF(AGL_DEVEL)
91         ADD_DEFINITIONS(-DAGL_DEVEL)
92 endif()
93
94 IF(cynara_FOUND)
95         ADD_DEFINITIONS(-DBACKEND_PERMISSION_IS_CYNARA)
96 ENDIF(cynara_FOUND)
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