a88fcf0f85525412680247a8dc6d7a01e4da6e65
[staging/xdg-launcher.git] / reference / 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(NAME example)
22 set(VERSION "0.0")
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_LICENCE "APL2.0")
30 set(PROJECT_LANGUAGES,"C")
31
32 # Where are stored config.xml.in and icon.png.in files. Template available at :
33 # https://gerrit.automotivelinux.org/gerrit/#/admin/projects/apps/app-templates
34 # set(PROJECT_WGT_DIR "packaging/wgt")
35
36 # Where are stored your external libraries for your project. This is 3rd party library that you don't maintain
37 # but used and must be built and linked.
38 # set(PROJECT_LIBDIR "libs")
39
40 # Where are stored data for your application. Pictures, static resources must be placed in that folder.
41 # set(PROJECT_RESOURCES "data")
42
43 # Compilation Mode (DEBUG, RELEASE)
44 # ----------------------------------
45 set(CMAKE_BUILD_TYPE "DEBUG")
46
47 # Compiler selection if needed. Overload the detected compiler.
48 # -----------------------------------------------
49 #set(CMAKE_C_COMPILER "gcc")
50 #set(CMAKE_CXX_COMPILER "g++")
51
52 # PKG_CONFIG required packages
53 # -----------------------------
54 set (PKG_REQUIRED_LIST
55         json-c
56         libsystemd
57         afb-daemon
58 )
59
60 # Static constante definition
61 # -----------------------------
62 add_compile_options()
63
64 # LANG Specific compile flags set for all build types
65 set(CMAKE_C_FLAGS "")
66 set(CMAKE_CXX_FLAGS "")
67
68 # Print a helper message when every thing is finished
69 # ----------------------------------------------------
70 #set(CLOSING_MESSAGE "")
71
72
73 # (BUG!!!) as PKG_CONFIG_PATH does not work [should be an env variable]
74 # ---------------------------------------------------------------------
75 set(CMAKE_INSTALL_PREFIX $ENV{HOME}/opt)
76 set(CMAKE_PREFIX_PATH ${CMAKE_INSTALL_PREFIX}/lib64/pkgconfig ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
77 set(LD_LIBRARY_PATH ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_INSTALL_PREFIX}/lib)
78
79 # Optional dependencies order
80 # ---------------------------
81 #set(EXTRA_DEPENDENCIES_ORDER)
82
83 # Optional Extra global include path
84 # -----------------------------------
85 #set(EXTRA_INCLUDE_DIRS)
86
87 # Optional extra libraries
88 # -------------------------
89 #set(EXTRA_LINK_LIBRARIES)
90
91 # Optional force binding installation
92 # ------------------------------------
93 # set(BINDINGS_INSTALL_PREFIX PrefixPath )
94
95 # Optional force widget prefix generation
96 # ------------------------------------------------
97 # set(WIDGET_PREFIX DestinationPath)
98
99 # Optional Widget entry point file.
100 # ---------------------------------------------------------
101  # This is the file that will be executed, loaded,...
102 # at launch time by the application framework
103
104 # set(WIDGET_ENTRY_POINT EntryPoint_Path)
105
106 # Optional Widget Mimetype specification
107 # --------------------------------------------------
108 # Choose between :
109 # - application/x-executable
110 # - application/vnd.agl.url
111 # - application/vnd.agl.service
112 # - application/vnd.agl.native
113 # - text/vnd.qt.qml
114 # - application/vnd.agl.qml
115 # - application/vnd.agl.qml.hybrid
116 # - application/vnd.agl.html.hybrid
117 #
118 # set(WIDGET_TYPE MimeType)
119
120 # Optional force binding Linking flag
121 # ------------------------------------
122 # set(BINDINGS_LINK_FLAG LinkOptions )