1c64ad269ab6eab7a676316c402dfa7ed48b5014
[src/app-framework-main.git] / src / CMakeLists.txt
1 ###########################################################################
2 # Copyright 2015 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 2.8)
20
21 include(FindPkgConfig)
22
23 pkg_check_modules(EXTRAS REQUIRED
24         libxml-2.0
25         openssl
26         xmlsec1 xmlsec1-openssl
27         json-c
28         dbus-1
29         )
30
31 add_compile_options(${EXTRAS_CFLAGS})
32 include_directories(${EXTRAS_INCLUDE_DIRS})
33 link_libraries(${EXTRAS_LIBRARIES})
34
35 if(USE_LIBZIP)
36         pkg_check_modules(LIBZIP REQUIRED libzip>=0.11)
37         add_compile_options(${LIBZIP_CFLAGS})
38         include_directories(${LIBZIP_INCLUDE_DIRS})
39         link_libraries(${LIBZIP_LIBRARIES})
40         add_definitions(-DUSE_LIBZIP=1)
41 else(USE_LIBZIP)
42         add_definitions(-DUSE_LIBZIP=0)
43 endif(USE_LIBZIP)
44
45 ###########################################################################
46
47 if(USE_SIMULATION)
48         include_directories(simulation)
49 else(USE_SIMULATION)
50         pkg_check_modules(SECMGR REQUIRED security-manager)
51         add_compile_options(${SECMGR_CFLAGS})
52         include_directories(${SECMGR_INCLUDE_DIRS})
53         link_libraries(${SECMGR_LIBRARIES})
54 endif(USE_SIMULATION)
55
56 ###########################################################################
57
58 add_compile_options(-Wall -Wno-pointer-sign -Werror=maybe-uninitialized)
59 add_compile_options(-ffunction-sections -fdata-sections)
60 add_compile_options(-fPIC)
61 add_compile_options(-Wl,--gc-sections)
62
63 set(CMAKE_C_FLAGS_PROFILING    "-g -O0 -pg -Wp,-U_FORTIFY_SOURCE")
64 set(CMAKE_C_FLAGS_DEBUG        "-g -O0 -ggdb -Wp,-U_FORTIFY_SOURCE")
65 set(CMAKE_C_FLAGS_RELEASE      "-g -O2")
66 set(CMAKE_C_FLAGS_CCOV         "-g -O2 --coverage")
67
68 ###########################################################################
69
70 add_library(wgtpkg
71         wgtpkg-base64.c
72         wgtpkg-certs.c
73         wgtpkg-digsig.c
74         wgtpkg-files.c
75         wgtpkg-install.c
76         wgtpkg-permissions.c
77         wgtpkg-workdir.c
78         wgtpkg-xmlsec.c
79         wgtpkg-zip.c
80         )
81
82 add_library(utils
83         utils-dir.c
84         utils-jbus.c
85         verbose.c
86         )
87
88 add_library(wgt
89         wgt-config.c
90         wgt-info.c
91         wgt.c
92         )
93
94 add_library(secwrp
95         secmgr-wrap.c
96         )
97
98 add_library(afm
99         afm-db.c
100         afm-launch.c
101         afm-run.c
102         )
103
104 add_executable(wgtpkg-sign wgtpkg-sign.c)
105 target_link_libraries(wgtpkg-sign wgtpkg utils)
106
107 add_executable(wgtpkg-pack wgtpkg-pack.c)
108 target_link_libraries(wgtpkg-pack wgtpkg utils)
109
110 add_executable(wgtpkg-info wgtpkg-info.c)
111 target_link_libraries(wgtpkg-info wgtpkg wgt utils)
112
113 add_executable(wgtpkg-installer wgtpkg-installer.c)
114 target_link_libraries(wgtpkg-installer wgtpkg wgt secwrp utils)
115
116 add_executable(afm-user-daemon afm-user-daemon.c)
117 target_link_libraries(afm-user-daemon afm secwrp wgt utils)
118
119 add_executable(afm-system-daemon afm-system-daemon.c)
120 target_link_libraries(afm-system-daemon wgtpkg afm secwrp wgt utils)
121
122 install(TARGETS wgtpkg-sign wgtpkg-pack wgtpkg-info wgtpkg-installer DESTINATION ${CMAKE_INSTALL_FULL_BINDIR})
123 install(TARGETS afm-user-daemon DESTINATION ${CMAKE_INSTALL_FULL_BINDIR})
124 install(TARGETS afm-system-daemon DESTINATION ${CMAKE_INSTALL_FULL_BINDIR})
125