config: cmake: change default build to RELEASE
[apps/agl-service-unicens.git] / conf.d / project / 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-unicens)
22 set(PROJECT_VERSION "0.1")
23 set(PROJECT_PRETTY_NAME "UNICENS Service")
24 set(PROJECT_DESCRIPTION "UNICENS V2 - Infotainment network setup and access")
25 set(PROJECT_URL "https://gerrit.automotivelinux.org/gerrit/p/apps/agl-service-unicens.git")
26 set(PROJECT_ICON "icon.png")
27 set(PROJECT_AUTHOR "Thorsten Kummermehr")
28 set(PROJECT_AUTHOR_MAIL "thorsten.kummermehr@microchip.com")
29 set(PROJECT_LICENSE "Apache-V2")
30 set(PROJECT_LANGUAGES,"C")
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 # 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 #Disabled because causes crash on some machines
50 #set(USE_EFENCE 1)
51
52 # Kernel selection if needed. You can choose between a
53 # mandatory version to impose a minimal version.
54 # Or check Kernel minimal version and just print a Warning
55 # about missing features and define a preprocessor variable
56 # to be used as preprocessor condition in code to disable
57 # incompatibles features. Preprocessor define is named
58 # KERNEL_MINIMAL_VERSION_OK.
59 #
60 # NOTE*** FOR NOW IT CHECKS KERNEL Yocto environment and
61 # Yocto SDK Kernel version.
62 # -----------------------------------------------
63 #set (kernel_mandatory_version 4.8)
64 #set (kernel_minimal_version 4.8)
65
66 # Compiler selection if needed. Impose a minimal version.
67 # -----------------------------------------------
68 set (gcc_minimal_version 4.9)
69
70 # PKG_CONFIG required packages
71 # -----------------------------
72 set (PKG_REQUIRED_LIST
73         json-c
74         libsystemd>=222
75         afb-daemon
76         libxml-2.0
77 )
78
79 # Prefix path where will be installed the files
80 # Default: /usr/local (need root permission to write in)
81 # ------------------------------------------------------
82 set(INSTALL_PREFIX $ENV{HOME}/opt)
83
84 # Customize link option
85 # -----------------------------
86 #list(APPEND link_libraries -an-option)
87
88 # Static constante definition
89 # -----------------------------
90 add_compile_options()
91 # Define CONTROL_CDEV_NAME should match MOST driver values
92 # ---------------------------------------------------------
93 add_compile_options(-DCONTROL_CDEV_TX="/dev/inic-usb-ctx")
94 add_compile_options(-DCONTROL_CDEV_RX="/dev/inic-usb-crx")
95 add_compile_options(-DUCS2_CFG_PATH="/etc/default/ucs:../data:./data")
96 add_compile_options(-DAFB_BINDING_VERSION=2)
97
98 # Compilation options definition
99 # Use CMake generator expressions to specify only for a specific language
100 # Values are prefilled with default options that is currently used.
101 # Either separate options with ";", or each options must be quoted separately
102 # DO NOT PUT ALL OPTION QUOTED AT ONCE , COMPILATION COULD FAILED !
103 # ----------------------------------------------------------------------------
104 #set(COMPILE_OPTIONS
105 # -Wall
106 # -Wextra
107 # -Wconversion
108 # -Wno-unused-parameter
109 # -Wno-sign-compare
110 # -Wno-sign-conversion
111 # -Werror=maybe-uninitialized
112 # -Werror=implicit-function-declaration
113 # -ffunction-sections
114 # -fdata-sections
115 # -fPIC
116 # CACHE STRING "Compilation flags")
117 #set(C_COMPILE_OPTIONS "" CACHE STRING "Compilation flags for C language.")
118 #set(CXX_COMPILE_OPTIONS "" CACHE STRING "Compilation flags for C++ language.")
119 #set(PROFILING_COMPILE_OPTIONS
120 # -g
121 # -O0
122 # -pg
123 # -Wp,-U_FORTIFY_SOURCE
124 # CACHE STRING "Compilation flags for PROFILING build type.")
125 #set(DEBUG_COMPILE_OPTIONS
126 # -g
127 # -ggdb
128 # -Wp,-U_FORTIFY_SOURCE
129 # CACHE STRING "Compilation flags for DEBUG build type.")
130 #set(CCOV_COMPILE_OPTIONS
131 # -g
132 # -O2
133 # --coverage
134 # CACHE STRING "Compilation flags for CCOV build type.")
135 #set(RELEASE_COMPILE_OPTIONS
136 # -g
137 # -O2
138 # CACHE STRING "Compilation flags for RELEASE build type.")
139
140 # (BUG!!!) as PKG_CONFIG_PATH does not work [should be an env variable]
141 # ---------------------------------------------------------------------
142 set(CMAKE_PREFIX_PATH ${CMAKE_INSTALL_PREFIX}/lib64/pkgconfig ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
143 set(LD_LIBRARY_PATH ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_INSTALL_PREFIX}/lib)
144
145 # Optional location for config.xml.in
146 # -----------------------------------
147 #set(WIDGET_ICON conf.d/wgt/${PROJECT_ICON} CACHE PATH "Path to the widget icon")
148 set(WIDGET_CONFIG_TEMPLATE ${CMAKE_CURRENT_SOURCE_DIR}/conf.d/wgt/config.xml.in)
149
150 # Mandatory widget Mimetype specification of the main unit
151 # --------------------------------------------------------------------------
152 # Choose between :
153 #- text/html : HTML application,
154 #       content.src designates the home page of the application
155 #
156 #- application/vnd.agl.native : AGL compatible native,
157 #       content.src designates the relative path of the binary.
158 #
159 # - application/vnd.agl.service: AGL service, content.src is not used.
160 #
161 #- ***application/x-executable***: Native application,
162 #       content.src designates the relative path of the binary.
163 #       For such application, only security setup is made.
164 #
165 set(WIDGET_TYPE application/vnd.agl.service)
166
167 # Mandatory Widget entry point file of the main unit
168 # --------------------------------------------------------------
169 # This is the file that will be executed, loaded,
170 # at launch time by the application framework.
171 #
172 set(WIDGET_ENTRY_POINT lib/afb-ucs2.so)
173
174 # Optional dependencies order
175 # ---------------------------
176 #set(EXTRA_DEPENDENCIES_ORDER)
177
178 # Optional Extra global include path
179 # -----------------------------------
180 #set(EXTRA_INCLUDE_DIRS)
181
182 # Optional extra libraries
183 # -------------------------
184 #set(EXTRA_LINK_LIBRARIES)
185
186 # Optional force binding Linking flag
187 # ------------------------------------
188 # set(BINDINGS_LINK_FLAG LinkOptions )
189
190 # Optional force package prefix generation, like widget
191 # -----------------------------------------------------
192 # set(PKG_PREFIX DestinationPath)
193
194 # Optional Application Framework security token
195 # and port use for remote debugging.
196 #------------------------------------------------------------
197 set(AFB_TOKEN   ""     CACHE PATH "Default binder security token")
198 set(AFB_REMPORT "1234" CACHE PATH "Default binder listening port")
199
200 # Print a helper message when every thing is finished
201 # ----------------------------------------------------
202 set(CLOSING_MESSAGE "Test with: afb-daemon --ldpaths=./package --port=1234 --workdir=. --roothttp=../htdocs --tracereq=common --token= --verbose")
203 set(PACKAGE_MESSAGE "Install widget file using in the target : afm-util install ${PROJECT_NAME}.wgt")
204
205 # Optional schema validator about now only XML, LUA and JSON
206 # are supported
207 #------------------------------------------------------------
208 #set(LUA_CHECKER "luac" "-p" CACHE STRING "LUA compiler")
209 #set(XML_CHECKER "xmllint" CACHE STRING "XML linter")
210 #set(JSON_CHECKER "json_verify" CACHE STRING "JSON linter")
211
212 # This include is mandatory and MUST happens at the end
213 # of this file, else you expose you to unexpected behavior
214 #
215 # This CMake module could be found at the following url:
216 # https://gerrit.automotivelinux.org/gerrit/#/admin/projects/src/cmake-apps-module
217 # -----------------------------------------------------------
218 include(CMakeAfbTemplates)