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