binding: navigation: rewrite of navigation binding
[apps/agl-service-navigation.git] / conf.d / cmake / config.cmake
1 ###########################################################################
2 # Copyright 2015, 2016, 2017 IoT.bzh
3 #
4 # author: Fulup Ar Foll <fulup@iot.bzh>
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 ###########################################################################
18
19 # Project Info
20 # ------------------
21 set(PROJECT_NAME agl-service-navigation)
22 set(PROJECT_VERSION "1.0")
23 set(PROJECT_PRETTY_NAME "Navigation service for AGL")
24 set(PROJECT_DESCRIPTION "Navigation reporting proxy for consumers")
25 set(PROJECT_URL "https://gerrit.automotivelinux.org/gerrit/apps/agl-service-navigation")
26 set(PROJECT_ICON "icon.png")
27 set(PROJECT_AUTHOR "Matt Ranostay")
28 set(PROJECT_AUTHOR_MAIL "matt.ranostay@konsulko.com")
29 set(PROJECT_LICENSE "APL2.0")
30 set(PROJECT_LANGUAGES,"C")
31 set(API_NAME "navigation")
32
33 # Where the project configuration files are stored
34 set(PROJECT_CMAKE_CONF_DIR "conf.d")
35
36 # Where are stored your external libraries for your project. This is 3rd party library that you don't maintain
37 # but used and must be built and linked.
38 # set(PROJECT_LIBDIR "libs")
39
40 # Where are stored data for your application. Pictures, static resources must be placed in that folder.
41 # set(PROJECT_RESOURCES "data")
42
43 # Which directories inspect to find CMakeLists.txt target files
44 # set(PROJECT_SRC_DIR_PATTERN "*")
45
46 # Compilation Mode (DEBUG, RELEASE)
47 # ----------------------------------
48 set(BUILD_TYPE "RELEASE")
49
50 # Kernel selection if needed. You can choose between a
51 # mandatory version to impose a minimal version.
52 # Or check Kernel minimal version and just print a Warning
53 # about missing features and define a preprocessor variable
54 # to be used as preprocessor condition in code to disable
55 # incompatibles features. Preprocessor define is named
56 # KERNEL_MINIMAL_VERSION_OK.
57 #
58 # NOTE*** FOR NOW IT CHECKS KERNEL Yocto environment and
59 # Yocto SDK Kernel version.
60 # -----------------------------------------------
61 #set(kernel_mandatory_version 4.8)
62
63 # Compiler selection if needed. Impose a minimal version.
64 # -----------------------------------------------
65 set (gcc_minimal_version 4.9)
66
67 # PKG_CONFIG required packages
68 # -----------------------------
69 set (PKG_REQUIRED_LIST
70         json-c
71         libsystemd>=222
72         afb-daemon
73         json-c
74         glib-2.0
75         gio-2.0
76         gobject-2.0
77         gio-unix-2.0
78         zlib
79 )
80
81 # Static constante definition
82 # -----------------------------
83 add_compile_options(-DPB_FIELD_16BIT)
84 add_compile_options($<$<COMPILE_LANGUAGE:CXX>:-pthread>)
85
86 # Customize link option
87 # -----------------------------
88 list (APPEND link_libraries -pthread)
89
90 # (BUG!!!) as PKG_CONFIG_PATH does not work [should be an env variable]
91 # ---------------------------------------------------------------------
92 set(INSTALL_PREFIX $ENV{HOME}/opt)
93 set(CMAKE_PREFIX_PATH ${CMAKE_INSTALL_PREFIX}/lib64/pkgconfig ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
94 set(LD_LIBRARY_PATH ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_INSTALL_PREFIX}/lib)
95
96 # Optional location for config.xml.in
97 # -----------------------------------
98 set(WIDGET_CONFIG_TEMPLATE ${CMAKE_CURRENT_SOURCE_DIR}/conf.d/wgt/config.xml.in)
99
100 # Mandatory widget Mimetype specification of the main unit
101 # --------------------------------------------------------------------------
102 # Choose between :
103 #- text/html : HTML application,
104 #       content.src designates the home page of the application
105 #
106 #- application/vnd.agl.native : AGL compatible native,
107 #       content.src designates the relative path of the binary.
108 #
109 # - application/vnd.agl.service: AGL service, content.src is not used.
110 #
111 #- ***application/x-executable***: Native application,
112 #       content.src designates the relative path of the binary.
113 #       For such application, only security setup is made.
114 #
115 set(WIDGET_TYPE application/vnd.agl.service)
116
117 # Mandatory Widget entry point file of the main unit
118 # --------------------------------------------------------------
119 # This is the file that will be executed, loaded,
120 # at launch time by the application framework.
121 #
122 set(WIDGET_ENTRY_POINT lib/libafm-navigation-binding.so)
123
124 # Print a helper message when every thing is finished
125 # ----------------------------------------------------
126 set(CLOSING_MESSAGE "Test with: afb-daemon --rootdir=\$\$(pwd)/package --binding=\$\$(pwd)/package/${WIDGET_ENTRY_POINT} --port=1234 --tracereq=common --token=\"1\" --verbose")
127 set(PACKAGE_MESSAGE "Install widget file using in the target : afm-util install ${PROJECT_NAME}.wgt")
128
129
130
131 # Optional dependencies order
132 # ---------------------------
133 #set(EXTRA_DEPENDENCIES_ORDER)
134
135 # Optional Extra global include path
136 # -----------------------------------
137 #set(EXTRA_INCLUDE_DIRS)
138
139 # Optional extra libraries
140 # -------------------------
141 #set(EXTRA_LINK_LIBRARIES)
142
143 # Optional force binding installation
144 # ------------------------------------
145 # set(BINDINGS_INSTALL_PREFIX PrefixPath )
146
147 # Optional force binding Linking flag
148 # ------------------------------------
149 # set(BINDINGS_LINK_FLAG LinkOptions )
150
151 # Optional force package prefix generation, like widget
152 # -----------------------------------------------------
153 # set(PKG_PREFIX DestinationPath)
154
155 # Optional Application Framework security token
156 # and port use for remote debugging.
157 #------------------------------------------------------------
158 #set(AFB_TOKEN   ""      CACHE PATH "Default AFB_TOKEN")
159 #set(AFB_REMPORT "1234" CACHE PATH "Default AFB_TOKEN")
160
161 # This include is mandatory and MUST happens at the end
162 # of this file, else you expose you to unexpected behavior
163 #
164 # This CMake module could be found at the following url:
165 # https://gerrit.automotivelinux.org/gerrit/#/admin/projects/src/cmake-apps-module
166 # -----------------------------------------------------------
167 include(CMakeAfbTemplates)