Fix wrong config.xml file used to build widget
[apps/low-level-can-service.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 low-can-service)
22 set(PROJECT_PRETTY_NAME "Low level CAN binding")
23 set(PROJECT_DESCRIPTION "Expose CAN Low Level APIs through AGL Framework")
24 set(PROJECT_URL "https://gerrit.automotivelinux.org/gerrit/apps/low-level-can-service")
25 set(PROJECT_ICON "icon.png")
26 set(PROJECT_AUTHOR "Romain Forlot")
27 set(PROJECT_AUTHOR_MAIL "romain.forlot@iot.bzh")
28 set(PROJECT_LICENSE "APL2.0")
29 set(PROJECT_LANGUAGES,"C CXX")
30
31 # Where are stored default templates files from submodule or subtree app-templates in your project tree
32 # relative to the root project directory
33 set(PROJECT_APP_TEMPLATES_DIR "conf.d/app-templates")
34
35 # Which directories inspect to find CMakeLists.txt target files
36 # set(PROJECT_SRC_DIR_PATTERN "*")
37
38 # Compilation Mode (DEBUG, RELEASE)
39 # ----------------------------------
40 set(CMAKE_BUILD_TYPE "DEBUG")
41
42 # Kernel selection if needed. You can choose between a
43 # mandatory version to impose a minimal version.
44 # Or check Kernel minimal version and just print a Warning
45 # about missing features and define a preprocessor variable
46 # to be used as preprocessor condition in code to disable
47 # incompatibles features. Preprocessor define is named
48 # KERNEL_MINIMAL_VERSION_OK.
49 #
50 # NOTE*** FOR NOW IT CHECKS KERNEL Yocto environment and
51 # Yocto SDK Kernel version.
52 # -----------------------------------------------
53 #set (kernel_mandatory_version 4.8)
54 set (kernel_minimal_version 4.8)
55
56 # Compiler selection if needed. Impose a minimal version.
57 # -----------------------------------------------
58 set (gcc_minimal_version 4.9)
59
60 # PKG_CONFIG required packages
61 # -----------------------------
62 set (PKG_REQUIRED_LIST
63         json-c
64         libsystemd>=222
65         afb-daemon
66         libmicrohttpd>=0.9.55
67 )
68
69 # Prefix path where will be installed the files
70 # Default: /usr/local (need root permission to write in)
71 # ------------------------------------------------------
72 set(CMAKE_INSTALL_PREFIX $ENV{HOME}/opt)
73
74 # Customize link option
75 # -----------------------------
76 list (APPEND link_libraries -pthread)
77
78 # Compilation options definition
79 # Use CMake generator expressions to specify only for a specific language
80 # Values are prefilled with default options that is currently used.
81 # Either separate options with ";", or each options must be quoted separately
82 # DO NOT PUT ALL OPTION QUOTED AT ONCE , COMPILATION COULD FAILED !
83 # ----------------------------------------------------------------------------
84 set(COMPILE_OPTIONS
85  -Wall
86  -Wextra
87  -Wconversion
88  -Wno-unused-parameter
89  -Wno-sign-compare
90  -Wno-sign-conversion
91  -Werror=maybe-uninitialized
92  -Werror=implicit-function-declaration
93  -ffunction-sections
94  -fdata-sections
95  -fPIC
96  -DPB_FIELD_16BIT
97  CACHE STRING "Compilation flags")
98 #set(C_COMPILE_OPTIONS "" CACHE STRING "Compilation flags for C language.")
99 set(CXX_COMPILE_OPTIONS -pthread CACHE STRING "Compilation flags for C++ language.")#set(PROFILING_COMPILE_OPTIONS
100 # -g
101 # -O0
102 # -pg
103 # -Wp,-U_FORTIFY_SOURCE
104 # CACHE STRING "Compilation flags for PROFILING build type.")
105 #set(DEBUG_COMPILE_OPTIONS
106 # -g
107 # -ggdb
108 # -Wp,-U_FORTIFY_SOURCE
109 # CACHE STRING "Compilation flags for DEBUG build type.")
110 #set(CCOV_COMPILE_OPTIONS
111 # -g
112 # -O2
113 # --coverage
114 # CACHE STRING "Compilation flags for CCOV build type.")
115 #set(RELEASE_COMPILE_OPTIONS
116 # -g
117 # -O2
118 # CACHE STRING "Compilation flags for RELEASE build type.")
119
120 # (BUG!!!) as PKG_CONFIG_PATH does not work [should be an env variable]
121 # ---------------------------------------------------------------------
122 set(CMAKE_PREFIX_PATH ${CMAKE_INSTALL_PREFIX}/lib64/pkgconfig ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
123 set(LD_LIBRARY_PATH ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_INSTALL_PREFIX}/lib)
124
125 # Optional location for config.xml.in
126 # -----------------------------------
127 #set(WIDGET_ICON "\"${CMAKE_SOURCE_DIR}conf.d/wgt/${PROJECT_ICON}\"" CACHE PATH "Path to the widget icon")
128 set(WIDGET_CONFIG_TEMPLATE "${CMAKE_SOURCE_DIR}/conf.d/wgt/config.xml.in" CACHE PATH "Path to widget config file template (config.xml.in)")
129
130 # Mandatory widget Mimetype specification of the main unit
131 # --------------------------------------------------------------------------
132 # Choose between :
133 #- text/html : HTML application,
134 #       content.src designates the home page of the application
135 #
136 #- application/vnd.agl.native : AGL compatible native,
137 #       content.src designates the relative path of the binary.
138 #
139 # - application/vnd.agl.service: AGL service, content.src is not used.
140 #
141 #- ***application/x-executable***: Native application,
142 #       content.src designates the relative path of the binary.
143 #       For such application, only security setup is made.
144 #
145 set(WIDGET_TYPE application/vnd.agl.service)
146
147 # Mandatory Widget entry point file of the main unit
148 # --------------------------------------------------------------
149 # This is the file that will be executed, loaded,
150 # at launch time by the application framework.
151 #
152 set(WIDGET_ENTRY_POINT lib/afb-low-can.so)
153
154 # Optional dependencies order
155 # ---------------------------
156 #set(EXTRA_DEPENDENCIES_ORDER)
157
158 # Optional Extra global include path
159 # -----------------------------------
160 #set(EXTRA_INCLUDE_DIRS)
161
162 # Optional extra libraries
163 # -------------------------
164 #set(EXTRA_LINK_LIBRARIES)
165
166 # Optional force binding Linking flag
167 # ------------------------------------
168 # set(BINDINGS_LINK_FLAG LinkOptions )
169
170 # Optional force package prefix generation, like widget
171 # -----------------------------------------------------
172 # set(PKG_PREFIX DestinationPath)
173
174 # Optional Application Framework security token
175 # and port use for remote debugging.
176 #------------------------------------------------------------
177 set(AFB_TOKEN   ""     CACHE STRING "Default binder security token")
178 set(AFB_REMPORT "1234" CACHE STRING "Default binder listening port")
179
180 # Print a helper message when every thing is finished
181 # ----------------------------------------------------
182 set(CLOSING_MESSAGE "Typical binding launch: afb-daemon --port=${AFB_REMPORT} --workdir=${CMAKE_BINARY_DIR}/package --ldpaths=lib --roothttp=htdocs  --token=\"${AFB_TOKEN}\" --tracereq=common --verbose")
183 set(PACKAGE_MESSAGE "Install widget file using in the target : afm-util install ${PROJECT_NAME}.wgt")
184
185 # Optional schema validator about now only XML, LUA and JSON
186 # are supported
187 #------------------------------------------------------------
188 #set(LUA_CHECKER "luac" "-p" CACHE STRING "LUA compiler")
189 #set(XML_CHECKER "xmllint" CACHE STRING "XML linter")
190 #set(JSON_CHECKER "json_verify" CACHE STRING "JSON linter")
191
192 # This include is mandatory and MUST happens at the end
193 # of this file, else you expose you to unexpected behavior
194 # -----------------------------------------------------------
195 include(${PROJECT_APP_TEMPLATES_DIR}/cmake/common.cmake)