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