wgtpkg-install: search in subdir "htdocs" also
[src/app-framework-main.git] / CMakeLists.txt
index 5796837..45ac19c 100644 (file)
@@ -21,6 +21,7 @@ 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")
@@ -43,6 +44,7 @@ set(afm_prefix              "urn:AGL:" CACHE STRING "Prefix for uniform resource
 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)
@@ -59,7 +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)