afm-util: install and pretty printing
[src/app-framework-main.git] / 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 project(afm-main C)
20
21 cmake_minimum_required(VERSION 2.8)
22
23 include(GNUInstallDirs)
24
25 macro(setc name value)
26         if(NOT DEFINED ${name})
27                 set(${name} ${value})
28         endif(NOT DEFINED ${name})
29 endmacro(setc)
30
31 setc(USE_LIBZIP 1)
32 setc(USE_SIMULATION 1)
33
34 setc(afm_name                "aglfwk")
35 setc(afm_confdir             "${CMAKE_INSTALL_FULL_SYSCONFDIR}/${afm_name}")
36 setc(afm_datadir             "${CMAKE_INSTALL_FULL_DATADIR}/${afm_name}")
37 setc(afm_appdir              "${afm_datadir}/applications")
38 setc(afm_icondir             "${afm_datadir}/icons")
39 setc(afm_prefix              "urn:agl:")
40 setc(afm_prefix_permission   "${afm_prefix}perm:")
41 setc(afm_prefix_plugin       "${afm_prefix}plugin:")
42 setc(afm_user_appdir         "app-data")
43 setc(wgtpkg_trusted_cert_dir "${afm_confdir}/certs")
44
45 macro(defstr name value)
46         add_definitions(-D${name}="${value}")
47 endmacro(defstr)
48
49 defstr(FWK_CONFIG_DIR          "${afm_confdir}")
50 defstr(FWK_PREFIX_PERMISSION   "${afm_prefix_permission}")
51 defstr(FWK_PREFIX_PLUGIN       "${afm_prefix_plugin}")
52 defstr(FWK_ICON_DIR            "${afm_icondir}")
53 defstr(FWK_APP_DIR             "${afm_appdir}")
54 defstr(FWK_USER_APP_DIR        "${afm_user_appdir}")
55 defstr(WGTPKG_TRUSTED_CERT_DIR "${wgtpkg_trusted_cert_dir}")
56 defstr(FWK_LAUNCH_CONF         "${afm_confdir}/afm-launch.conf")
57
58 add_subdirectory(src)
59 add_subdirectory(conf)
60 add_subdirectory(scripts)
61
62