X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=CMakeLists.txt;h=45ac19c50265d34bb1bd737d424e9d49b5565ef3;hb=refs%2Fheads%2Fdab;hp=e89322270b1d686fde8c073e1494f7de0cd1cf91;hpb=38ba270af828b80e0ffb5eab955aff733de17dba;p=src%2Fapp-framework-main.git diff --git a/CMakeLists.txt b/CMakeLists.txt index e893222..45ac19c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ ########################################################################### -# Copyright 2015 IoT.bzh +# Copyright 2015, 2016, 2017 IoT.bzh # # author: José Bollo # @@ -21,17 +21,20 @@ project(afm-main C) cmake_minimum_required(VERSION 2.8) include(GNUInstallDirs) +include(CTest) set(PROJECT_NAME "AFM Main") set(PROJECT_PRETTY_NAME "Application Framework Main") -set(PROJECT_DESCRIPTION "Secured Application framework") +set(PROJECT_DESCRIPTION "Secured Application framework for Automotive Grade Linux") set(PROJECT_VERSION "1.0") - set(USE_LIBZIP ON CACHE BOOL "should try to use libzip?") -set(USE_SIMULATION ON CACHE BOOL "if set simulates security manager") +set(USE_SIMULATION OFF CACHE BOOL "if set simulates security manager and smack") set(USE_SDK OFF CACHE BOOL "if set, avoids installating system runtime files") +set(SIMULATE_SECMGR OFF CACHE BOOL "if set, the security manager is simulated") +set(SIMULATE_SMACK OFF CACHE BOOL "if set, the smack environment is simulated") + set(afm_name "afm" CACHE STRING "Name for application framework user") set(afm_confdir "${CMAKE_INSTALL_FULL_SYSCONFDIR}/${afm_name}" CACHE STRING "Directory for configuration files") set(afm_datadir "${CMAKE_INSTALL_FULL_DATADIR}/${afm_name}" CACHE STRING "Root directory for installions") @@ -40,8 +43,15 @@ set(afm_icondir "${afm_datadir}/icons" CACHE STRING "Directory for i set(afm_prefix "urn:AGL:" CACHE STRING "Prefix for uniform resource name") set(afm_prefix_binding "${afm_prefix}binding:" CACHE STRING "URN for bindings") set(afm_user_appdir "app-data" CACHE STRING "User subdirectory for applications") +set(afm_user_appdir_label "User::App-Shared" CACHE STRING "Smack label of the user subdirectory for applications") +set(systemd_units_root "${CMAKE_INSTALL_FULL_LIBDIR}/systemd" CACHE STRING "Place where unit files are to be set") set(wgtpkg_trusted_cert_dir "${afm_confdir}/certs" CACHE STRING "Path to internal certificates") +if(USE_SIMULATION) + set(SIMULATE_SECMGR ON) + set(SIMULATE_SMACK ON) +endif(USE_SIMULATION) + add_definitions( -DFWK_CONFIG_DIR="${afm_confdir}" -DFWK_PREFIX="${afm_prefix}" @@ -51,6 +61,9 @@ add_definitions( -DFWK_USER_APP_DIR="${afm_user_appdir}" -DWGTPKG_TRUSTED_CERT_DIR="${wgtpkg_trusted_cert_dir}" -DFWK_LAUNCH_CONF="${afm_confdir}/afm-launch.conf" + -DFWK_UNIT_CONF="${afm_confdir}/afm-unit.conf" + -DFWK_USER_APP_DIR_LABEL="${afm_user_appdir_label}" + -DSYSTEMD_UNITS_ROOT="${systemd_units_root}" ) add_subdirectory(src) @@ -58,4 +71,14 @@ add_subdirectory(conf) add_subdirectory(scripts) add_subdirectory(certs) +############################################################ +# installs the pkgconfig files + +CONFIGURE_FILE(afm-main.pc.in afm-main.pc @ONLY) +INSTALL(FILES + ${CMAKE_CURRENT_BINARY_DIR}/afm-main.pc + DESTINATION + ${CMAKE_INSTALL_LIBDIR}/pkgconfig + ) +