91b3fcd34844b93bf9308d7ea69e108f42ddbe46
[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 # Where are stored default templates files from submodule or subtree app-templates in your project tree
33 # relative to the root project directory
34 set(PROJECT_APP_TEMPLATES_DIR "conf.d/templates")
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 # Which directories inspect to find CMakeLists.txt target files
44 set(PROJECT_SRC_DIR_PATTERN "[^_]*")
45
46 # Compilation Mode (DEBUG, RELEASE)
47 # ----------------------------------
48 set(CMAKE_BUILD_TYPE "DEBUG")
49
50 # Kernel selection if needed. Impose a minimal version.
51 # NOTE FOR NOW IT CHECKS KERNEL Yocto SDK Kernel version
52 # else only HOST VERSION
53 # ------------------------------------------------------
54 #set (kernel_minimal_version 4.8)
55
56 # Compiler selection if needed. Overload the detected compiler.
57 # -----------------------------------------------
58 set (gcc_minimal_version 4.9)
59 #set(CMAKE_C_COMPILER "gcc")
60 #set(CMAKE_CXX_COMPILER "g++")
61
62 # PKG_CONFIG required packages
63 # -----------------------------
64 set (PKG_REQUIRED_LIST
65         libsystemd
66         libmicrohttpd
67         afb-daemon
68         json-c
69         mxml
70 )
71
72 # LANG Specific compile flags set for all build types
73 # set(CMAKE_C_FLAGS "")
74 # set(CMAKE_CXX_FLAGS "")
75
76 # Define CONTROL_CDEV_NAME should match MOST driver values
77 # ---------------------------------------------------------
78   add_compile_options(-DCONTROL_CDEV_TX="/dev/inic-usb-ctx")
79   add_compile_options(-DCONTROL_CDEV_RX="/dev/inic-usb-crx")
80
81 # Print a helper message when every thing is finished
82 # ----------------------------------------------------
83 set(CLOSING_MESSAGE "Test with: afb-daemon --ldpaths=. --port=1234 --workdir=.. --roothttp=./htdocs --tracereq=common --token='' --verbose")
84
85 # (BUG!!!) as PKG_CONFIG_PATH does not work [should be an env variable]
86 # ---------------------------------------------------------------------
87 set(INSTALL_PREFIX $ENV{HOME}/opt)
88 set(CMAKE_PREFIX_PATH ${CMAKE_INSTALL_PREFIX}/lib64/pkgconfig ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
89 set(LD_LIBRARY_PATH ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_INSTALL_PREFIX}/lib)
90
91 # Optional location for config.xml.in
92 # -----------------------------------
93 #set(WIDGET_CONFIG_TEMPLATE ${CMAKE_CURRENT_SOURCE_DIR}/conf.d/config.xml.in)
94
95 # Mandatory widget Mimetype specification of the main unit
96 # --------------------------------------------------------------------------
97 # Choose between :
98 #- text/html : HTML application,
99 #       content.src designates the home page of the application
100 #
101 #- application/vnd.agl.native : AGL compatible native,
102 #       content.src designates the relative path of the binary.
103 #
104 # - application/vnd.agl.service: AGL service, content.src is not used.
105 #
106 #- ***application/x-executable***: Native application,
107 #       content.src designates the relative path of the binary.
108 #       For such application, only security setup is made.
109 #
110 set(WIDGET_TYPE application/vnd.agl.service)
111
112 # Mandatory Widget entry point file of the main unit
113 # --------------------------------------------------------------
114 # This is the file that will be executed, loaded,
115 # at launch time by the application framework.
116 #
117 set(WIDGET_ENTRY_POINT lib/afb-ucs2.so)
118
119 # Optional dependencies order
120 # ---------------------------
121 #set(EXTRA_DEPENDENCIES_ORDER)
122
123 # Optional Extra global include path
124 # -----------------------------------
125 #set(EXTRA_INCLUDE_DIRS)
126
127 # Optional extra libraries
128 # -------------------------
129 #set(EXTRA_LINK_LIBRARIES)
130
131 # Optional force binding installation
132 # ------------------------------------
133 # set(BINDINGS_INSTALL_PREFIX PrefixPath )
134
135 # Optional force binding Linking flag
136 # ------------------------------------
137 # set(BINDINGS_LINK_FLAG LinkOptions )
138
139 # Optional force package prefix generation, like widget
140 # -----------------------------------------------------
141 # set(PKG_PREFIX DestinationPath)
142
143 # Optional Application Framework security token
144 # and port use for remote debugging.
145 #------------------------------------------------------------
146 #set(AFB_TOKEN   ""      CACHE PATH "Default AFB_TOKEN")
147 #set(AFB_REMPORT "1234" CACHE PATH "Default AFB_TOKEN")
148
149 # This include is mandatory and MUST happens at the end
150 # of this file, else you expose you to unexpected behavior
151 # -----------------------------------------------------------
152 include(${PROJECT_APP_TEMPLATES_DIR}/cmake/common.cmake)