cleanup
[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
42 link_libraries(-Wl,--as-needed -Wl,--gc-sections)
43
44 add_compile_options(-Wall -Wextra -Wconversion)
45 add_compile_options(-Wno-unused-parameter) # frankly not using a parameter does it care?
46 add_compile_options(-Wno-sign-compare -Wno-sign-conversion)
47 add_compile_options(-Werror=maybe-uninitialized)
48 add_compile_options(-Werror=implicit-function-declaration)
49 add_compile_options(-ffunction-sections -fdata-sections)
50 add_compile_options(-fPIC)
51 add_compile_options(-g)
52
53 set(CMAKE_C_FLAGS_PROFILING    "-g -O2 -pg -Wp,-U_FORTIFY_SOURCE")
54 set(CMAKE_C_FLAGS_DEBUG        "-g -ggdb -Wp,-U_FORTIFY_SOURCE")
55 set(CMAKE_C_FLAGS_RELEASE      "-g -O2")
56 set(CMAKE_C_FLAGS_CCOV         "-g -O2 --coverage")
57
58 ###########################################################################
59
60 PKG_CHECK_MODULES(json-c REQUIRED json-c)
61
62 INCLUDE(FindThreads)
63 FIND_PACKAGE(Threads)
64
65 SET(include_dirs
66         ${INCLUDE_DIRS}
67         ${CMAKE_SOURCE_DIR}/include
68         ${json-c_INCLUDE_DIRS}
69         )
70
71 SET(link_libraries
72         ${CMAKE_THREAD_LIBS_INIT}
73         ${json-c_LIBRARIES}
74         )
75
76 SET(binding_install_dir ${CMAKE_INSTALL_FULL_LIBDIR}/afb)
77
78 ADD_SUBDIRECTORY(src)
79 ADD_SUBDIRECTORY(include)
80 ADD_SUBDIRECTORY(bindings)
81
82 ############################################################
83 # installs the pkgconfig files
84 CONFIGURE_FILE(afb-daemon.pc.in afb-daemon.pc @ONLY)
85 CONFIGURE_FILE(libafbwsc.pc.in libafbwsc.pc @ONLY)
86
87 INSTALL(FILES
88     ${CMAKE_CURRENT_BINARY_DIR}/afb-daemon.pc
89     ${CMAKE_CURRENT_BINARY_DIR}/libafbwsc.pc
90     DESTINATION
91     ${CMAKE_INSTALL_LIBDIR}/pkgconfig
92     )
93