diff options
author | José Bollo <jose.bollo@iot.bzh> | 2015-12-18 16:58:10 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2015-12-18 16:58:10 +0100 |
commit | a8c5306b1d0ac21bd745ae553f59c6eb189e04a4 (patch) | |
tree | bf8a0ef07f61b275d51a04a238b2e5bcbbc89203 /CMakeLists.txt | |
parent | c0fc18e47e49dd4e3cc2f09452a19297dad63f9c (diff) |
moving to cmake
Change-Id: Ic1c7ce208f88c707435cce0ec0e658974315d3d1
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..504162b --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,48 @@ +########################################################################### +# Copyright 2015 IoT.bzh +# +# author: José Bollo <jose.bollo@iot.bzh> +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +########################################################################### + +cmake_minimum_required(VERSION 2.8) + +project("afm-main" LANGUAGES "C") + +set(afm_name "aglfwk") +set(afm_confdir "${sysconfdir}/${afm_name}") +set(afm_datadir "${datadir}/$(afm_name}") +set(afm_appdir "${afm_datadir}/applications") +set(afm_icondir "${afm_datadir}/icons") +set(afm_prefix "urn:agl:") +set(afm_prefix_permission "${afm_prefix}perm:") +set(afm_prefix_plugin "${afm_prefix}plugin:") +set(afm_user_appdir "app-data") +set(wgtpkg_trusted_cert_dir "${afm_confdir}/certs") + +macro(defstr name value) + add_definitions("-D${name}=\"${value}\"") +endmacro(defstr) + +defstr(FWK_CONFIG_DIR "${afm_confdir}") +defstr(FWK_PREFIX_PERMISSION "${afm_prefix_permission}") +defstr(FWK_PREFIX_PLUGIN "${afm_prefix_plugin}") +defstr(FWK_ICON_DIR "${afm_icondir}") +defstr(FWK_APP_DIR "${afm_appdir}") +defstr(FWK_USER_APP_DIR "${afm_user_appdir}") +defstr(WGTPKG_TRUSTED_CERT_DIR "${wgtpkg_trusted_cert_dir}") + +add_subdirectory(src) + + |