diff options
author | José Bollo <jose.bollo@iot.bzh> | 2016-06-24 14:04:37 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2016-06-24 14:04:37 +0200 |
commit | 448982b69026464c16ca0545aa91173a935e49f7 (patch) | |
tree | 76a2da1234c1ba8abb0b3b809896723779e8f22c /CMakeLists.txt | |
parent | f58eb17b6fd797e1c969f4fd902f450c237a3079 (diff) |
improves naming using 'binding'
Change-Id: I535e01ce4a8dd1e16637e61c6624b4f37639b2f7
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c2511af..0591847 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,19 +32,18 @@ SET(PROJECT_NAME "AFM Main") SET(PROJECT_PRETTY_NAME "Application Framework Main") SET(PROJECT_DESCRIPTION "Secured Application framework") SET(PROJECT_VERSION "1.0") -SET(PROJECT_URL "https://github.com/iotbzh/afm-main") setc(USE_LIBZIP 1) setc(USE_SIMULATION 1) -setc(afm_name "aglfwk") -setc(afm_confdir "${CMAKE_INSTALL_SYSCONFDIR}/${afm_name}") -setc(afm_datadir "${CMAKE_INSTALL_DATADIR}/${afm_name}") +setc(afm_name "afm") +setc(afm_confdir "${CMAKE_INSTALL_FULL_SYSCONFDIR}/${afm_name}") +setc(afm_datadir "${CMAKE_INSTALL_FULL_DATADIR}/${afm_name}") setc(afm_appdir "${afm_datadir}/applications") setc(afm_icondir "${afm_datadir}/icons") setc(afm_prefix "urn:agl:") setc(afm_prefix_permission "${afm_prefix}perm:") -setc(afm_prefix_plugin "${afm_prefix}plugin:") +setc(afm_prefix_binding "${afm_prefix}binding:") setc(afm_user_appdir "app-data") setc(wgtpkg_trusted_cert_dir "${afm_confdir}/certs") @@ -54,7 +53,7 @@ endmacro(defstr) defstr(FWK_CONFIG_DIR "${afm_confdir}") defstr(FWK_PREFIX_PERMISSION "${afm_prefix_permission}") -defstr(FWK_PREFIX_PLUGIN "${afm_prefix_plugin}") +defstr(FWK_PREFIX_BINDING "${afm_prefix_binding}") defstr(FWK_ICON_DIR "${afm_icondir}") defstr(FWK_APP_DIR "${afm_appdir}") defstr(FWK_USER_APP_DIR "${afm_user_appdir}") |