Disabled temporarly kernel version checking
[apps/agl-service-can-low-level.git] / CAN-binder / 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 low-can-project)
22 set(VERSION "1.0")
23 set(PROJECT_PRETTY_NAME "Low level CAN binding")
24 set(PROJECT_DESCRIPTION "Expose CAN Low Level APIs through AGL Framework")
25 set(PROJECT_URL "https://github.com/iotbzh/CAN_signaling")
26 set(PROJECT_AUTHOR "Romain Forlot")
27 set(PROJECT_AUTHOR_MAIL "romain.forlot@iot.bzh")
28 set(PROJECT_ICON "icon.png")
29 set(PROJECT_LANGUAGES,"C")
30
31 # Where are stored default templates files from submodule or subtree app-templates in your project tree
32 # relative to the root project directory
33 set(PROJECT_APP_TEMPLATES_DIR "conf.d/default")
34
35 # Where are stored your external libraries for your project. This is 3rd party library that you don't maintain
36 # but used and must be built and linked.
37 # set(PROJECT_LIBDIR "libs")
38
39 # Where are stored data for your application. Pictures, static resources must be placed in that folder.
40 # set(PROJECT_RESOURCES "data")
41
42 # Compilation Mode (DEBUG, RELEASE)
43 # ----------------------------------
44 set(CMAKE_BUILD_TYPE "DEBUG")
45
46 # Kernel selection if needed. Overload the detected compiler.
47 # -----------------------------------------------
48 #set (kernel_minimal_version 4.8)
49
50 # Compiler selection if needed. Overload the detected compiler.
51 # -----------------------------------------------
52 set (gcc_minimal_version 4.9)
53
54 # PKG_CONFIG required packages
55 # -----------------------------
56 set (PKG_REQUIRED_LIST
57         json-c
58         libsystemd
59         afb-daemon
60 )
61
62 # Static constante definition
63 # -----------------------------
64 add_compile_options(-D_REENTRANT)
65 add_compile_options(-DPB_FIELD_16BIT)
66
67 # LANG Specific compile flags set for all build types
68 set(CMAKE_C_FLAGS "")
69 set(CMAKE_CXX_FLAGS "-std=c++11")
70
71 # Print a helper message when every thing is finished
72 # ----------------------------------------------------
73 set(CLOSING_MESSAGE "Test with: afb-daemon --rootdir=\$\$(pwd)/package --ldpaths=\$\$(pwd)/package/lib --port=1234 --roothttp=\$\$(pwd)/package/htdocs --tracereq=common --token=\"1\" --verbose")
74 set(WIDGET_MESSAGE "Install widget file using in the target : afm-util install ${PROJECT_NAME}.wgt")
75
76 # (BUG!!!) as PKG_CONFIG_PATH does not work [should be an env variable]
77 # ---------------------------------------------------------------------
78 set(CMAKE_INSTALL_PREFIX $ENV{HOME}/opt)
79 set(CMAKE_PREFIX_PATH ${CMAKE_INSTALL_PREFIX}/lib64/pkgconfig ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
80 set(LD_LIBRARY_PATH ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_INSTALL_PREFIX}/lib)
81
82 # Optional dependencies order
83 # ---------------------------
84 #set(EXTRA_DEPENDENCIES_ORDER)
85
86 # Optional Extra global include path
87 # -----------------------------------
88 #set(EXTRA_INCLUDE_DIRS)
89
90 # Optional extra libraries
91 # -------------------------
92 #set(EXTRA_LINK_LIBRARIES)
93
94 # Optional force binding installation
95 # ------------------------------------
96 set(BINDINGS_INSTALL_PREFIX /opt )
97 # set(WIDGET_PREFIX DestinationPath)
98
99 # Optional force binding Linking flag
100 # ------------------------------------
101 # set(BINDINGS_LINK_FLAG LinkOptions )
102