Migrate app-templates to CMake module
[apps/agl-service-can-low-level.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-can-low-level)
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/agl-service-can-low-level")
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 set(API_NAME "low-can")
31
32 # Where are stored the project configuration files
33 # relative to the root project directory
34 set(PROJECT_CMAKE_CONF_DIR "conf.d")
35
36 # Which directories inspect to find CMakeLists.txt target files
37 # set(PROJECT_SRC_DIR_PATTERN "*")
38
39 # Compilation Mode (DEBUG, RELEASE)
40 # ----------------------------------
41 set(BUILD_TYPE "RELEASE" CACHE STRING "Default Build variant chosen. (Overwritten by cli if given)")
42
43 # Kernel selection if needed. You can choose between a
44 # mandatory version to impose a minimal version.
45 # Or check Kernel minimal version and just print a Warning
46 # about missing features and define a preprocessor variable
47 # to be used as preprocessor condition in code to disable
48 # incompatibles features. Preprocessor define is named
49 # KERNEL_MINIMAL_VERSION_OK.
50 #
51 # NOTE*** FOR NOW IT CHECKS KERNEL Yocto environment and
52 # Yocto SDK Kernel version.
53 # -----------------------------------------------
54 #set (kernel_mandatory_version 4.8)
55 set (kernel_minimal_version 4.8)
56
57 # Compiler selection if needed. Impose a minimal version.
58 # -----------------------------------------------
59 set (gcc_minimal_version 4.9)
60
61 # PKG_CONFIG required packages
62 # -----------------------------
63 set (PKG_REQUIRED_LIST
64         json-c
65         libsystemd>=222
66         afb-daemon
67 )
68
69 # Prefix path where will be installed the files
70 # Default: /usr/local (need root permission to write in)
71 # ------------------------------------------------------
72 set(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.")
100 #set(PROFILING_COMPILE_OPTIONS
101 # -g
102 # -O0
103 # -pg
104 # -Wp,-U_FORTIFY_SOURCE
105 # CACHE STRING "Compilation flags for PROFILING build type.")
106 #set(DEBUG_COMPILE_OPTIONS
107 # -Og
108 # -g
109 # -ggdb
110 # -D_FORTIFY_SOURCE=2
111 # CACHE STRING "Compilation flags for DEBUG build type.")
112 #set(COVERAGE_COMPILE_OPTIONS
113 # -g
114 # -O2
115 # --coverage
116 # CACHE STRING "Compilation flags for COVERAGE build type.")
117 #set(RELEASE_COMPILE_OPTIONS
118 # -O2
119 # -D_FORTIFY_SOURCE=2
120 # CACHE STRING "Compilation flags for RELEASE build type.")
121
122 add_definitions(-DAFB_BINDING_VERSION=3)
123
124 # Optional location for config.xml.in
125 # -----------------------------------
126 #set(WIDGET_ICON "\"${CMAKE_SOURCE_DIR}conf.d/wgt/${PROJECT_ICON}\"" CACHE PATH "Path to the widget icon")
127 set(WIDGET_CONFIG_TEMPLATE "${CMAKE_SOURCE_DIR}/conf.d/wgt/config.xml.in" CACHE PATH "Path to widget config file template (config.xml.in)")
128
129 # Mandatory widget Mimetype specification of the main unit
130 # --------------------------------------------------------------------------
131 # Choose between :
132 #- text/html : HTML application,
133 #       content.src designates the home page of the application
134 #
135 #- application/vnd.agl.native : AGL compatible native,
136 #       content.src designates the relative path of the binary.
137 #
138 # - application/vnd.agl.service: AGL service, content.src is not used.
139 #
140 #- ***application/x-executable***: Native application,
141 #       content.src designates the relative path of the binary.
142 #       For such application, only security setup is made.
143 #
144 set(WIDGET_TYPE application/vnd.agl.service)
145
146 # Mandatory Widget entry point file of the main unit
147 # --------------------------------------------------------------
148 # This is the file that will be executed, loaded,
149 # at launch time by the application framework.
150 #
151 set(WIDGET_ENTRY_POINT lib/afb-low-can.so)
152
153 # Optional dependencies order
154 # ---------------------------
155 #set(EXTRA_DEPENDENCIES_ORDER)
156
157 # Optional Extra global include path
158 # -----------------------------------
159 #set(EXTRA_INCLUDE_DIRS)
160
161 # Optional extra libraries
162 # -------------------------
163 #set(EXTRA_LINK_LIBRARIES)
164
165 # Optional force binding Linking flag
166 # ------------------------------------
167 # set(BINDINGS_LINK_FLAG LinkOptions )
168
169 # Optional force package prefix generation, like widget
170 # -----------------------------------------------------
171 # set(PKG_PREFIX DestinationPath)
172
173 # Optional Application Framework security token
174 # and port use for remote debugging.
175 #------------------------------------------------------------
176 set(AFB_TOKEN   ""     CACHE STRING "Default binder security token")
177 set(AFB_REMPORT "1234" CACHE STRING "Default binder listening port")
178
179 # Print a helper message when every thing is finished
180 # ----------------------------------------------------
181 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")
182 set(PACKAGE_MESSAGE "Install widget file using in the target : afm-util install ${PROJECT_NAME}.wgt")
183
184 # Optional schema validator about now only XML, LUA and JSON
185 # are supported
186 #------------------------------------------------------------
187 #set(LUA_CHECKER "luac" "-p" CACHE STRING "LUA compiler")
188 #set(XML_CHECKER "xmllint" CACHE STRING "XML linter")
189 #set(JSON_CHECKER "json_verify" CACHE STRING "JSON linter")
190
191 # This include is mandatory and MUST happens at the end
192 # of this file, else you expose you to unexpected behavior
193 #
194 # This CMake module could be found at the following url:
195 # https://gerrit.automotivelinux.org/gerrit/#/admin/projects/src/cmake-apps-module
196 # -----------------------------------------------------------
197 include(CMakeAfbTemplates)