Continue separation of sources and put also html5 into separated dir
[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(NAME Hybrid-QML-example)
22 set(VERSION "0.0")
23 set(PROJECT_PRETTY_NAME "Hybrid QML Example")
24 set(PROJECT_DESCRIPTION "Hybrid QML AGL application example")
25 set(PROJECT_URL "https://gerrit.automotivelinux.org/gerrit/apps/app-templates")
26 set(PROJECT_ICON "icon.png")
27
28 # Compilation Mode (DEBUG, RELEASE)
29 # ----------------------------------
30 set(CMAKE_BUILD_TYPE "DEBUG")
31
32 # Compiler selection if needed. Overload the detected compiler.
33 # -----------------------------------------------
34 #set(CMAKE_C_COMPILER "gcc")
35 #set(CMAKE_CXX_COMPILER "g++")
36
37 # PKG_CONFIG required packages
38 # -----------------------------
39 set (PKG_REQUIRED_LIST 
40         json-c
41         libsystemd
42         libafbwsc
43         afb-daemon
44 )
45
46 # Static constante definition
47 # -----------------------------
48 add_compile_options(
49         ${libafbwsc_CFLAGS}
50         ${json-c_CFLAGS}
51         ${libsystemd_CFLAGS}
52 )
53
54 # LANG Specific compile flags set for all build types
55 set(CMAKE_C_FLAGS "")
56 set(CMAKE_CXX_FLAGS "")
57
58 # Print a helper message when every thing is finished
59 # ----------------------------------------------------
60 #set(CLOSING_MESSAGE "")
61
62
63 # (BUG!!!) as PKG_CONFIG_PATH does not work [should be an env variable]
64 # ---------------------------------------------------------------------
65 set(CMAKE_INSTALL_PREFIX ${HOME}/opt)
66 set(CMAKE_PREFIX_PATH ${CMAKE_INSTALL_PREFIX}/lib64/pkgconfig ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
67 set(LD_LIBRARY_PATH ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_INSTALL_PREFIX}/lib)
68
69 # Optional dependencies order
70 # ---------------------------
71 #set(EXTRA_DEPENDENCIES_ORDER)
72
73 # Optional Extra global include path
74 # -----------------------------------
75 #set(EXTRA_INCLUDE_DIRS)
76
77 # Optional extra libraries
78 # -------------------------
79 #set(EXTRA_LINK_LIBRARIES)
80
81 # Optional force binding installation
82 # ------------------------------------
83 set(BINDINGS_INSTALL_PREFIX /opt )
84
85 # Optional force widget prefix generation
86 # ---------------------------------------
87 # set(WIDGET_PREFIX DestinationPath)
88
89 # Optional force binding Linking flag
90 # ------------------------------------
91 # set(BINDINGS_LINK_FLAG LinkOptions )