68f8236f646c58e45c719771bb9e87697ebd8b85
[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 # Which directories inspect to find CMakeLists.txt target files
36 # set(PROJECT_SRC_DIR_PATTERN "*")
37
38 # Compilation Mode (DEBUG, RELEASE)
39 # ----------------------------------
40 #set(BUILD_TYPE "DEBUG")
41 #set(USE_EFENCE 1)
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         afb-daemon
66 )
67
68 # You can also consider to include libsystemd
69 # -----------------------------------
70 #list (APPEND PKG_REQUIRED_LIST libsystemd>=222)
71
72 # Prefix path where will be installed the files
73 # Default: /usr/local (need root permission to write in)
74 # ------------------------------------------------------
75 #set(INSTALL_PREFIX /opt/AGL CACHE PATH "INSTALL PREFIX PATH")
76
77 # Customize link option
78 # -----------------------------
79 #list(APPEND link_libraries -an-option)
80
81 # Compilation options definition
82 # Use CMake generator expressions to specify only for a specific language
83 # Values are prefilled with default options that is currently used.
84 # Either separate options with ";", or each options must be quoted separately
85 # DO NOT PUT ALL OPTION QUOTED AT ONCE , COMPILATION COULD FAILED !
86 # ----------------------------------------------------------------------------
87 #set(COMPILE_OPTIONS
88 # -Wall
89 # -Wextra
90 # -Wconversion
91 # -Wno-unused-parameter
92 # -Wno-sign-compare
93 # -Wno-sign-conversion
94 # -Werror=maybe-uninitialized
95 # -Werror=implicit-function-declaration
96 # -ffunction-sections
97 # -fdata-sections
98 # -fPIC
99 # CACHE STRING "Compilation flags")
100 #set(C_COMPILE_OPTIONS "" CACHE STRING "Compilation flags for C language.")
101 #set(CXX_COMPILE_OPTIONS "" CACHE STRING "Compilation flags for C++ language.")
102 #set(PROFILING_COMPILE_OPTIONS
103 # -g
104 # -O0
105 # -pg
106 # -Wp,-U_FORTIFY_SOURCE
107 # CACHE STRING "Compilation flags for PROFILING build type.")
108 #set(DEBUG_COMPILE_OPTIONS
109 # -g
110 # -ggdb
111 # -Og
112 # -D_FORTIFY_SOURCE=2
113 # CACHE STRING "Compilation flags for DEBUG build type.")
114 #set(CCOV_COMPILE_OPTIONS
115 # -g
116 # --coverage
117 # CACHE STRING "Compilation flags for CCOV build type.")
118 #set(RELEASE_COMPILE_OPTIONS
119 # -g
120 # -O2
121 # -D_FORTIFY_SOURCE=2
122 # CACHE STRING "Compilation flags for RELEASE build type.")
123
124 # Location for config.xml.in template file.
125 #
126 # If you keep them commented then it will build with a default minimal widget
127 # template which is very simple and it is highly probable that it will not suit
128 # to your app.
129 # -----------------------------------------
130 #set(WIDGET_ICON "conf.d/wgt/${PROJECT_ICON}" CACHE PATH "Path to the widget icon")
131 #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)")
132
133 # Mandatory widget Mimetype specification of the main unit
134 # --------------------------------------------------------------------------
135 # Choose between :
136 #- text/html : HTML application,
137 #       content.src designates the home page of the application
138 #
139 #- application/vnd.agl.native : AGL compatible native,
140 #       content.src designates the relative path of the binary.
141 #
142 # - application/vnd.agl.service: AGL service, content.src is not used.
143 #
144 #- ***application/x-executable***: Native application,
145 #       content.src designates the relative path of the binary.
146 #       For such application, only security setup is made.
147 #
148 set(WIDGET_TYPE MimeType_Not_Set)
149
150 # Mandatory Widget entry point file of the main unit
151 # --------------------------------------------------------------
152 # This is the file that will be executed, loaded,
153 # at launch time by the application framework.
154 #
155 set(WIDGET_ENTRY_POINT EntryPoint_Path_Not_Set)
156
157 # Optional dependencies order
158 # ---------------------------
159 #set(EXTRA_DEPENDENCIES_ORDER)
160
161 # Optional Extra global include path
162 # -----------------------------------
163 #set(EXTRA_INCLUDE_DIRS)
164
165 # Optional extra libraries
166 # -------------------------
167 #set(EXTRA_LINK_LIBRARIES)
168
169 # Optional force binding Linking flag
170 # ------------------------------------
171 # set(BINDINGS_LINK_FLAG LinkOptions )
172
173 # Optional force package prefix generation, like widget
174 # -----------------------------------------------------
175 # set(PKG_PREFIX DestinationPath)
176
177 # Optional Application Framework security token
178 # and port use for remote debugging.
179 #------------------------------------------------------------
180 set(AFB_TOKEN   ""     CACHE PATH "Default binder security token")
181 set(AFB_REMPORT "1234" CACHE PATH "Default binder listening port")
182
183 # Print a helper message when every thing is finished
184 # ----------------------------------------------------
185 set(CLOSING_MESSAGE "Typical binding launch: cd ${CMAKE_BINARY_DIR}/package \\&\\& afb-daemon --port=${AFB_REMPORT} --workdir=. --ldpaths=lib --roothttp=htdocs  --token=\"${AFB_TOKEN}\" --tracereq=common --verbose")
186 set(PACKAGE_MESSAGE "Install widget file using in the target : afm-util install ${PROJECT_NAME}.wgt")
187
188 # Optional schema validator about now only XML, LUA and JSON
189 # are supported
190 #------------------------------------------------------------
191 #set(LUA_CHECKER "luac" "-p" CACHE STRING "LUA compiler")
192 #set(XML_CHECKER "xmllint" CACHE STRING "XML linter")
193 #set(JSON_CHECKER "json_verify" CACHE STRING "JSON linter")
194
195 # This include is mandatory and MUST happens at the end
196 # of this file, else you expose you to unexpected behavior
197 # -----------------------------------------------------------
198 include(${PROJECT_APP_TEMPLATES_DIR}/cmake/common.cmake)