Fixed Debug
[apps/agl-service-unicens.git] / conf.d / 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 unicens-agent)
22 set(PROJECT_VERSION "0.1")
23 set(PROJECT_PRETTY_NAME "Unicens Agent")
24 set(PROJECT_DESCRIPTION "Expose MicroChip UnicensV2 through AGL AppFw")
25 set(PROJECT_URL "https://github.com/iotbzh/unicens-agent")
26 set(PROJECT_ICON "icon.png")
27 set(PROJECT_AUTHOR "Fulup, Ar Foll")
28 set(PROJECT_AUTHOR_MAIL "fulup@iot.bzh")
29 set(PROJECT_LICENCE "Apache-V2")
30 set(PROJECT_LANGUAGES,"C")
31
32 # Compilation Mode (DEBUG, RELEASE)
33 # ----------------------------------
34 set(CMAKE_BUILD_TYPE "DEBUG")
35
36 # Compiler selection if needed. Overload the detected compiler.
37 # -----------------------------------------------
38 set (gcc_minimal_version 4.9)
39 #set(CMAKE_C_COMPILER "gcc")
40 #set(CMAKE_CXX_COMPILER "g++")
41
42 # PKG_CONFIG required packages
43 # -----------------------------
44 set (PKG_REQUIRED_LIST
45         libsystemd>=222
46         libmicrohttpd>=0.9.54
47         afb-daemon
48         json-c
49         mxml
50 )
51
52 # LANG Specific compile flags set for all build types
53 # set(CMAKE_C_FLAGS "")
54 # set(CMAKE_CXX_FLAGS "")
55
56 # Define CONTROL_CDEV_NAME should match MOST driver values
57 # ---------------------------------------------------------
58   add_compile_options(-DCONTROL_CDEV_TX="/dev/inic-usb-ctx")
59   add_compile_options(-DCONTROL_CDEV_RX="/dev/inic-usb-crx")
60
61 # Print a helper message when every thing is finished
62 # ----------------------------------------------------
63 set(CLOSING_MESSAGE "Test with: afb-daemon --ldpaths=. --port=1234 --workdir=.. --roothttp=./htdocs --tracereq=common --token='' --verbose")
64
65 # (BUG!!!) as PKG_CONFIG_PATH does not work [should be an env variable]
66 # ---------------------------------------------------------------------
67 set(INSTALL_PREFIX $ENV{HOME}/opt)
68 set(CMAKE_PREFIX_PATH ${CMAKE_INSTALL_PREFIX}/lib64/pkgconfig ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
69 set(LD_LIBRARY_PATH ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_INSTALL_PREFIX}/lib)
70
71 # Optional dependencies order
72 # ---------------------------
73 #set(EXTRA_DEPENDENCIES_ORDER)
74
75 # Optional Extra global include path
76 # -----------------------------------
77 # set(EXTRA_INCLUDE_DIRS)
78
79 # Optional extra libraries
80 # -------------------------
81 # set(EXTRA_LINK_LIBRARIES)
82
83 # Optional force binding installation
84 # ------------------------------------
85 # set(BINDINGS_INSTALL_PREFIX PrefixPath )
86
87 # Optional force widget prefix generation
88 # ------------------------------------------------
89 # set(WIDGET_PREFIX DestinationPath)
90
91 # Optional Widget entry point file.
92 # ---------------------------------------------------------
93 # This is the file that will be executed, loaded,...
94 # at launch time by the application framework
95
96 # set(WIDGET_ENTRY_POINT EntryPoint_Path)
97
98 # Optional Widget Mimetype specification
99 # --------------------------------------------------
100 # Choose between :
101 # - application/x-executable
102 # - application/vnd.agl.url
103 # - application/vnd.agl.service
104 # - application/vnd.agl.native
105 # - text/vnd.qt.qml
106 # - application/vnd.agl.qml
107 # - application/vnd.agl.qml.hybrid
108 # - application/vnd.agl.html.hybrid
109 #
110 # set(WIDGET_TYPE MimeType)
111
112 # Optional force binding Linking flag
113 # ------------------------------------
114 # set(BINDINGS_LINK_FLAG LinkOptions )