summaryrefslogtreecommitdiffstats
path: root/conf.d
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2020-06-02 14:34:03 -0400
committerScott Murray <scott.murray@konsulko.com>2020-06-02 14:40:30 -0400
commit4ee878dd42a3af74ad454505a8feb6e120e48d36 (patch)
tree8964ba734d92b68a8b8c6bfbb79e79d8fbaa35e8 /conf.d
parent7dabb46483ff6a3a4fa5cfe532b91412f185554d (diff)
Remove submodule usage and add autobuild scripts
Changes: - Add .gitreview file to enable "git review" subcommand against AGL Gerrit - Remove old CMake app templates submodule usage in favor of the toolchain provide templates - Tweak config.cmake to work with newer app templates - Add latest CMake autobuild scripts Bug-AGL: SPEC-2049, SPEC-3300 Signed-off-by: Scott Murray <scott.murray@konsulko.com> Change-Id: Ib236e4d5380c5ef55f99692f519f928eefd7d802
Diffstat (limited to 'conf.d')
m---------conf.d/app-templates0
-rw-r--r--conf.d/cmake/config.cmake13
2 files changed, 5 insertions, 8 deletions
diff --git a/conf.d/app-templates b/conf.d/app-templates
deleted file mode 160000
-Subproject 72ca4ff2f7b3515fde8a4db5704de26ba70c2f9
diff --git a/conf.d/cmake/config.cmake b/conf.d/cmake/config.cmake
index b6dbb87..9431c29 100644
--- a/conf.d/cmake/config.cmake
+++ b/conf.d/cmake/config.cmake
@@ -22,26 +22,23 @@ set(PROJECT_NAME chromium68-browser-service)
set(PROJECT_PRETTY_NAME "Chromium68 browser service")
set(PROJECT_DESCRIPTION "AGL widget service for Chromium browser")
set(PROJECT_URL "https://webosose.org")
+set(PROJECT_VERSION "1.0")
set(PROJECT_ICON "icon.png")
set(PROJECT_AUTHOR "Jose Dapena Paz")
set(PROJECT_AUTHOR_MAIL "jose.dapena@lge.com")
set(PROJECT_LICENSE "APL2.0")
#set(PROJECT_LANGUAGES "C")
-# Where are stored default templates files from submodule or subtree app-templates in your project tree
+# Where are stored the project configuration files
# relative to the root project directory
-set(PROJECT_APP_TEMPLATES_DIR "conf.d/app-templates")
-
-# Where are stored your external libraries for your project. This is 3rd party library that you don't maintain
-# but used and must be built and linked.
-# set(PROJECT_LIBDIR "libs")
+set(PROJECT_CMAKE_CONF_DIR "conf.d")
# Which directories inspect to find CMakeLists.txt target files
# set(PROJECT_SRC_DIR_PATTERN "*")
# Compilation Mode (DEBUG, RELEASE)
# ----------------------------------
-#set(CMAKE_BUILD_TYPE "DEBUG")
+set(CMAKE_BUILD_TYPE "RELEASE")
#set(USE_EFENCE 1)
# Kernel selection if needed. You can choose between a
@@ -197,4 +194,4 @@ set(PACKAGE_MESSAGE "Install widget file using in the target : afm-util install
# This include is mandatory and MUST happens at the end
# of this file, else you expose you to unexpected behavior
# -----------------------------------------------------------
-include(${PROJECT_APP_TEMPLATES_DIR}/cmake/common.cmake)
+include(CMakeAfbTemplates)