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