X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-main.git;a=blobdiff_plain;f=CMakeLists.txt;h=191725a5812cb41215ceab46849e61ceaaa7e508;hp=c83e59d4e064eda9d39af9c20207f7c72e53a985;hb=7ea1070ee471141f58e9e4c03df5c95bbcef907d;hpb=ce5c20d2fa7e9c3e08c97643c77c7647bef79cd5 diff --git a/CMakeLists.txt b/CMakeLists.txt index c83e59d..191725a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ ########################################################################### -# Copyright (C) 2015-2019 IoT.bzh +# Copyright (C) 2015-2020 IoT.bzh # # author: José Bollo # @@ -30,15 +30,16 @@ set(AGLVERSION "8.0.0" CACHE STRING "Version of AGL") set(PROJECT_VERSION ${AGLVERSION} CACHE STRING "Version of the project can override AGLVERSION") set(PROJECT_URL "https://gerrit.automotivelinux.org/gerrit/gitweb?p=src/app-framework-main.git;a=summary") -set(USE_LIBZIP ON CACHE BOOL "should try to use libzip?") -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(ALLOW_NO_SIGNATURE OFF CACHE BOOL "if set, widgets without signature are accepted") +option(DISTINCT_VERSIONS "Should the version of application be distinguished" OFF) +option(USE_LIBZIP "Should try to use libzip?" ON) +option(USE_SIMULATION "If set simulates security manager and smack" OFF) +option(USE_SDK "If set, avoids installating system runtime files" OFF) +option(ALLOW_NO_SIGNATURE "If set, widgets without signature are accepted" OFF) -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") +option(SIMULATE_SECMGR "If set, the security manager is simulated" OFF) +option(SIMULATE_SMACK "If set, the smack environment is simulated" OFF) -set(LEGACY_USER_DAEMON OFF CACHE BOOL "compile and install the legacy afm-user-daemon") +option(LEGACY_USER_DAEMON "compile and install the legacy afm-user-daemon" OFF) 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") @@ -53,6 +54,7 @@ set(systemd_units_root "${CMAKE_INSTALL_FULL_LIBDIR}/systemd" CACHE STRING set(wgtpkg_trusted_cert_dir "${afm_confdir}/certs" CACHE STRING "Path to internal certificates") set(afm_platform_rundir "/run/platform" CACHE STRING "Path to location of platform runtime sockets") set(afm_users_rundir "/run/user" CACHE STRING "Path to location of users runtime sockets") +set(afm_scope_platform_dir "/var/scope-platform" CACHE STRING "Path to home of scope-platform apps") if(USE_SIMULATION) set(SIMULATE_SECMGR ON) @@ -73,11 +75,13 @@ add_definitions( -DAFM_VERSION="${PROJECT_VERSION}" ) if(ALLOW_NO_SIGNATURE) - add_definitions(-DDEFAULT_ALLOW_NO_SIGNATURE=1) -else(ALLOW_NO_SIGNATURE) - add_definitions(-DDEFAULT_ALLOW_NO_SIGNATURE=0) + add_definitions(-DALLOW_NO_SIGNATURE=1) endif(ALLOW_NO_SIGNATURE) - +if(DISTINCT_VERSIONS) + add_definitions(-DDISTINCT_VERSIONS=1) +else(DISTINCT_VERSIONS) + add_definitions(-DDISTINCT_VERSIONS=0) +endif(DISTINCT_VERSIONS) add_subdirectory(src) add_subdirectory(conf)