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