Update template to the reference
[staging/xdg-launcher.git] / templates / native / etc / 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 native-example)
22 set(VERSION "0.0")
23 set(PROJECT_PRETTY_NAME "Native Example")
24 set(PROJECT_DESCRIPTION "Native AGL application example")
25 set(PROJECT_URL "https://gerrit.automotivelinux.org/gerrit/apps/app-templates")
26 set(PROJECT_AUTHOR "Last Name, First Name")
27 set(PROJECT_AUTHOR_MAIL "example.man@bigouden.bzh")
28 set(PROJECT_ICON "icon.png")
29
30 # Compilation Mode (DEBUG, RELEASE)
31 # ----------------------------------
32 set(CMAKE_BUILD_TYPE "DEBUG")
33
34 # Compiler selection if needed. Impose a minimal version.
35 # -----------------------------------------------
36 set (gcc_minimal_version 4.9)
37
38 # PKG_CONFIG required packages
39 # -----------------------------
40 set (PKG_REQUIRED_LIST
41         json-c
42         afb-daemon
43 )
44
45 # Static constante definition
46 # -----------------------------
47 add_compile_options()
48
49 # LANG Specific compile flags set for all build types
50 set(CMAKE_C_FLAGS "")
51 set(CMAKE_CXX_FLAGS "")
52
53 # Print a helper message when every thing is finished
54 # ----------------------------------------------------
55 set(CLOSING_MESSAGE "Test launching application with : afb-daemon --rootdir=\$\$(pwd)/package --ldpaths=\$\$(pwd)/package/lib --port=1234 --roothttp=\$\$(pwd)/package/htdocs --tracereq=common --token=\"1\" --verbose")
56 set(WIDGET_MESSAGE "Install widget file using in the target : afm-util install ${PROJECT_NAME}.wgt")
57
58 # (BUG!!!) as PKG_CONFIG_PATH does not work [should be an env variable]
59 # ---------------------------------------------------------------------
60 set(CMAKE_INSTALL_PREFIX ${HOME}/opt)
61 set(CMAKE_PREFIX_PATH ${CMAKE_INSTALL_PREFIX}/lib64/pkgconfig ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
62 set(LD_LIBRARY_PATH ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_INSTALL_PREFIX}/lib)
63
64 # Optional dependencies order
65 # ---------------------------
66 #set(EXTRA_DEPENDENCIES_ORDER)
67
68 # Optional Extra global include path
69 # -----------------------------------
70 #set(EXTRA_INCLUDE_DIRS)
71
72 # Optional extra libraries
73 # -------------------------
74 #set(EXTRA_LINK_LIBRARIES)
75
76 # Optional force binding installation
77 # ------------------------------------
78 # set(BINDINGS_INSTALL_PREFIX PrefixPath )
79
80 # Optional force widget prefix generation
81 # ------------------------------------------------
82 # set(WIDGET_PREFIX DestinationPath)
83
84 # Optional Widget entry point file.
85 # ---------------------------------------------------------
86  # This is the file that will be executed, loaded,...
87 # at launch time by the application framework
88
89 # set(WIDGET_ENTRY_POINT EntryPoint_Path)
90
91 # Optional Widget Mimetype specification
92 # --------------------------------------------------
93 # Choose between :
94 # - application/x-executable
95 # - application/vnd.agl.url
96 # - application/vnd.agl.service
97 # - application/vnd.agl.native
98 # - text/vnd.qt.qml
99 # - text/html
100 # - application/vnd.agl.qml
101 # - application/vnd.agl.qml.hybrid
102 # - application/vnd.agl.html.hybrid
103 #
104 # set(WIDGET_TYPE MimeType)
105
106 # Optional force binding Linking flag
107 # ------------------------------------
108 # set(BINDINGS_LINK_FLAG LinkOptions )
109