aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-06-12 12:59:29 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2017-06-12 12:59:29 +0200
commite36ec00bd2a8e570de9bad179da8adb9d42799ec (patch)
treebfd3cb9cc433656c588cd037f55a859a2b50c232
parenta3e6126b082335cb9722c6b8d5321dd39d6d2dca (diff)
Reworked build process
- Renamed submodule folder, binding - added more complete config.xml widget file Change-Id: I1b6c18bc5cbd461c193dacba29678cf5c5f3143d Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r--.gitmodules5
-rw-r--r--CMakeLists.txt2
m---------conf.d/app-templates0
-rw-r--r--conf.d/config.cmake84
m---------conf.d/templates0
-rw-r--r--conf.d/wgt/config.xml.in17
-rw-r--r--high-can-binding/CMakeLists.txt6
7 files changed, 71 insertions, 43 deletions
diff --git a/.gitmodules b/.gitmodules
index c87a462..b545da1 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,4 +1,3 @@
-[submodule "conf.d/templates"]
- path = conf.d/templates
+[submodule "conf.d/app-templates"]
+ path = conf.d/app-templates
url = https://gerrit.automotivelinux.org/gerrit/apps/app-templates
- branch = reference
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1902466..2a97f85 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -19,7 +19,7 @@
CMAKE_MINIMUM_REQUIRED(VERSION 3.3)
include(${CMAKE_CURRENT_SOURCE_DIR}/conf.d/config.cmake)
-include(${CMAKE_CURRENT_SOURCE_DIR}/conf.d/templates/cmake/common.cmake)
+include(${CMAKE_CURRENT_SOURCE_DIR}/conf.d/app-templates/cmake/common.cmake)
# Bindings to compile
# --------------------
diff --git a/conf.d/app-templates b/conf.d/app-templates
new file mode 160000
+Subproject 21ae95d8eb61745ca54fd143e25dba065a817f6
diff --git a/conf.d/config.cmake b/conf.d/config.cmake
index 6d7ea03..1ad0c41 100644
--- a/conf.d/config.cmake
+++ b/conf.d/config.cmake
@@ -18,20 +18,20 @@
# Project Info
# ------------------
-set(NAME high-can-project)
-set(VERSION "1.0")
-set(PRETTY_NAME "High level CAN binding")
-set(DESCRIPTION "Expose CAN Low Level APIs through AGL Framework")
-set(URL "https://github.com/iotbzh/CAN_signaling")
+set(PROJECT_NAME high-can-service)
+set(PROJECT_VERSION "1.0")
+set(PROJECT_PRETTY_NAME "High level CAN service")
+set(PROJECT_DESCRIPTION "Expose CAN Low Level APIs through AGL Framework")
+set(PROJECT_URL "https://github.com/iotbzh/CAN_signaling")
set(PROJECT_ICON "icon.png")
-set(PROJECT_AUTHOR "Last Name, First Name")
-set(PROJECT_AUTHOR_MAIL "example.man@bigouden.bzh")
+set(PROJECT_AUTHOR "Romain Forlot")
+set(PROJECT_AUTHOR_MAIL "romain.forlot@iot.bzh")
set(PROJECT_LICENCE "APL2.0")
set(PROJECT_LANGUAGES,"C")
# Where are stored default templates files from submodule or subtree app-templates in your project tree
# relative to the root project directory
-set(PROJECT_APP_TEMPLATES_DIR "conf.d/templates")
+set(PROJECT_APP_TEMPLATES_DIR "conf.d/app-templates")
# Where are stored config.xml.in and icon.png.in files. Template available at :
# https://gerrit.automotivelinux.org/gerrit/#/admin/projects/apps/app-templates
@@ -50,7 +50,7 @@ set(CMAKE_BUILD_TYPE "DEBUG")
# Compiler selection if needed. Impose a minimal version.
# -----------------------------------------------
-set (gcc_minimal_version 4.9)
+set (gcc_minimal_version 4.9)
# PKG_CONFIG required packages
# -----------------------------
@@ -79,6 +79,34 @@ set(CMAKE_INSTALL_PREFIX $ENV{HOME}/opt)
set(CMAKE_PREFIX_PATH ${CMAKE_INSTALL_PREFIX}/lib64/pkgconfig ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
set(LD_LIBRARY_PATH ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_INSTALL_PREFIX}/lib)
+# Optional location for config.xml.in
+# -----------------------------------
+set(WIDGET_CONFIG_TEMPLATE ${CMAKE_CURRENT_SOURCE_DIR}/conf.d/wgt/config.xml.in)
+
+# Mandatory widget Mimetype specification of the main unit
+# --------------------------------------------------------------------------
+# Choose between :
+#- text/html : HTML application,
+# content.src designates the home page of the application
+#
+#- application/vnd.agl.native : AGL compatible native,
+# content.src designates the relative path of the binary.
+#
+# - application/vnd.agl.service: AGL service, content.src is not used.
+#
+#- ***application/x-executable***: Native application,
+# content.src designates the relative path of the binary.
+# For such application, only security setup is made.
+#
+set(WIDGET_TYPE application/vnd.agl.service)
+
+# Mandatory Widget entry point file of the main unit
+# --------------------------------------------------------------
+# This is the file that will be executed, loaded,
+# at launch time by the application framework.
+#
+set(WIDGET_ENTRY_POINT "lib/afs-high-can.so")
+
# Optional dependencies order
# ---------------------------
#set(EXTRA_DEPENDENCIES_ORDER)
@@ -89,38 +117,22 @@ set(LD_LIBRARY_PATH ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_INSTALL_PREFIX}/lib)
# Optional extra libraries
# -------------------------
-#set(EXTRA_LINK_LIBRARIES boost_system)
+#set(EXTRA_LINK_LIBRARIES)
# Optional force binding installation
# ------------------------------------
# set(BINDINGS_INSTALL_PREFIX PrefixPath )
-# Optional force widget prefix generation
-# ------------------------------------------------
-# set(WIDGET_PREFIX DestinationPath)
-
-# Optional Widget entry point file.
-# ---------------------------------------------------------
- # This is the file that will be executed, loaded,...
-# at launch time by the application framework
-
-# set(WIDGET_ENTRY_POINT EntryPoint_Path)
-
-# Optional Widget Mimetype specification
-# --------------------------------------------------
-# Choose between :
-# - application/x-executable
-# - application/vnd.agl.url
-# - application/vnd.agl.service
-# - application/vnd.agl.native
-# - text/vnd.qt.qml
-# - text/html
-# - application/vnd.agl.qml
-# - application/vnd.agl.qml.hybrid
-# - application/vnd.agl.html.hybrid
-#
-# set(WIDGET_TYPE MimeType)
-
# Optional force binding Linking flag
# ------------------------------------
# set(BINDINGS_LINK_FLAG LinkOptions )
+
+# Optional force package prefix generation, like widget
+# -----------------------------------------------------
+# set(PACKAGE_PREFIX DestinationPath)
+
+# Optional Application Framework security token
+# and port use for remote debugging.
+#------------------------------------------------------------
+#set(AFB_TOKEN "" CACHE PATH "Default AFB_TOKEN")
+#set(AFB_REMPORT "1234" CACHE PATH "Default AFB_TOKEN")
diff --git a/conf.d/templates b/conf.d/templates
deleted file mode 160000
-Subproject d63a072def64647022cff067aff65e957281bf4
diff --git a/conf.d/wgt/config.xml.in b/conf.d/wgt/config.xml.in
new file mode 100644
index 0000000..d0ddf03
--- /dev/null
+++ b/conf.d/wgt/config.xml.in
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<widget xmlns="http://www.w3.org/ns/widgets" id="@PROJECT_NAME@" version="@PROJECT_VERSION@">
+ <name>@PROJECT_NAME@</name>
+ <icon src="@PROJECT_ICON@"/>
+ <content src="@WIDGET_ENTRY_POINT@" type="@WIDGET_TYPE@"/>
+ <description>@PROJECT_DESCRIPTION@</description>
+ <author>@PROJECT_AUTHOR@ &lt;@PROJECT_AUTHOR_MAIL@&gt;</author>
+ <license>@PROJECT_LICENSE@</license>
+ <feature name="urn:AGL:widget:required-api">
+ <param name="#target" value="main" />
+ <param name="low-can" value="ws" />
+ </feature>
+ <feature name="urn:AGL:widget:provided-api">
+ <param name="#target" value="main" />
+ <param name="high-can" value="ws" />
+ </feature>
+</widget>
diff --git a/high-can-binding/CMakeLists.txt b/high-can-binding/CMakeLists.txt
index e607bfe..ae31ed4 100644
--- a/high-can-binding/CMakeLists.txt
+++ b/high-can-binding/CMakeLists.txt
@@ -18,14 +18,14 @@
###########################################################################
# Add target to project dependency list
-PROJECT_TARGET_ADD(high-can-binding)
+PROJECT_TARGET_ADD(high-can)
# Define project Targets
- add_library(${TARGET_NAME} MODULE ${TARGET_NAME}.cpp high-can-binding-hat.cpp high.cpp)
+ add_library(${TARGET_NAME} MODULE ${TARGET_NAME}-binding.cpp high-can-binding-hat.cpp high.cpp)
# Binder exposes a unique public entry point
SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES
- PREFIX ""
+ PREFIX "afs-"
LABELS "BINDING"
LINK_FLAGS ${BINDINGS_LINK_FLAG}
OUTPUT_NAME ${TARGET_NAME}