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