Adding utils-json
[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)
59 add_compile_options(-Werror=maybe-uninitialized -Werror=implicit-function-declaration)
60 add_compile_options(-ffunction-sections -fdata-sections)
61 add_compile_options(-fPIC)
62 add_compile_options(-Wl,--gc-sections)
63
64 set(CMAKE_C_FLAGS_PROFILING    "-g -O0 -pg -Wp,-U_FORTIFY_SOURCE")
65 set(CMAKE_C_FLAGS_DEBUG        "-g -O0 -ggdb -Wp,-U_FORTIFY_SOURCE")
66 set(CMAKE_C_FLAGS_RELEASE      "-g -O2")
67 set(CMAKE_C_FLAGS_CCOV         "-g -O2 --coverage")
68
69 ###########################################################################
70
71 add_library(wgtpkg
72         wgtpkg-base64.c
73         wgtpkg-certs.c
74         wgtpkg-digsig.c
75         wgtpkg-files.c
76         wgtpkg-install.c
77         wgtpkg-permissions.c
78         wgtpkg-workdir.c
79         wgtpkg-xmlsec.c
80         wgtpkg-zip.c
81         )
82
83 add_library(utils
84         utils-dir.c
85         utils-jbus.c
86         utils-json.c
87         verbose.c
88         )
89
90 add_library(wgt
91         wgt-config.c
92         wgt-info.c
93         wgt.c
94         )
95
96 add_library(secwrp
97         secmgr-wrap.c
98         )
99
100 add_library(afm
101         afm-db.c
102         afm-launch.c
103         afm-run.c
104         )
105
106 add_executable(wgtpkg-sign wgtpkg-sign.c)
107 target_link_libraries(wgtpkg-sign wgtpkg utils)
108
109 add_executable(wgtpkg-pack wgtpkg-pack.c)
110 target_link_libraries(wgtpkg-pack wgtpkg utils)
111
112 add_executable(wgtpkg-info wgtpkg-info.c)
113 target_link_libraries(wgtpkg-info wgtpkg wgt utils)
114
115 add_executable(wgtpkg-installer wgtpkg-installer.c)
116 target_link_libraries(wgtpkg-installer wgtpkg wgt secwrp utils)
117
118 add_executable(afm-user-daemon afm-user-daemon.c)
119 target_link_libraries(afm-user-daemon afm secwrp wgt utils)
120
121 add_executable(afm-system-daemon afm-system-daemon.c)
122 target_link_libraries(afm-system-daemon wgtpkg afm secwrp wgt utils)
123
124 install(TARGETS wgtpkg-sign wgtpkg-pack wgtpkg-info wgtpkg-installer DESTINATION ${CMAKE_INSTALL_FULL_BINDIR})
125 install(TARGETS afm-user-daemon DESTINATION ${CMAKE_INSTALL_FULL_BINDIR})
126 install(TARGETS afm-system-daemon DESTINATION ${CMAKE_INSTALL_FULL_BINDIR})
127