From 4ee878dd42a3af74ad454505a8feb6e120e48d36 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Tue, 2 Jun 2020 14:34:03 -0400 Subject: 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 Change-Id: Ib236e4d5380c5ef55f99692f519f928eefd7d802 --- conf.d/cmake/config.cmake | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'conf.d/cmake') 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) -- cgit 1.2.3-korg