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