X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=CMakeLists.txt;h=83e0c3954b880fb9e772b33a77459e18db1e48f7;hb=2aaf35ab55872771af5dcd3d4140215fec506e53;hp=e2e62b282eab2d37711dc28795b28929d73d22da;hpb=27bb304eee3485c73e1be677fbc820591bacc2f9;p=src%2Fapp-framework-main.git diff --git a/CMakeLists.txt b/CMakeLists.txt index e2e62b2..83e0c39 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ ########################################################################### -# Copyright 2015, 2016 IoT.bzh +# Copyright 2015, 2016, 2017 IoT.bzh # # author: José Bollo # @@ -21,10 +21,11 @@ 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?") @@ -59,6 +60,7 @@ 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}" ) @@ -67,4 +69,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 + ) +