Format
[apps/agl-service-can-low-level.git] / CAN-binder / 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 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 # Compilation Mode (DEBUG, RELEASE)
32 # ----------------------------------
33 set(CMAKE_BUILD_TYPE "DEBUG")
34
35 # Compiler selection if needed. Overload the detected compiler.
36 # -----------------------------------------------
37 #set(CMAKE_C_COMPILER "gcc")
38 #set(CMAKE_CXX_COMPILER "g++")
39
40 # PKG_CONFIG required packages
41 # -----------------------------
42 set (PKG_REQUIRED_LIST
43         json-c
44         libsystemd
45         afb-daemon
46 )
47
48 # Static constante definition
49 # -----------------------------
50 add_compile_options(-D_REENTRANT)
51 add_compile_options(-DPB_FIELD_16BIT)
52
53 # LANG Specific compile flags set for all build types
54 set(CMAKE_C_FLAGS "")
55 set(CMAKE_CXX_FLAGS "-std=c++11")
56
57 # Print a helper message when every thing is finished
58 # ----------------------------------------------------
59 set(CLOSING_MESSAGE "Test with: afb-daemon --rootdir=\$\$(pwd)/low-can-binding/package --ldpaths=\$\$(pwd)/low-can-binding/package/lib --port=1234 --roothttp=\$\$(pwd)/low-can-binding/package/htdocs --tracereq=common --token=\"\" --verbose")
60
61
62 # (BUG!!!) as PKG_CONFIG_PATH does not work [should be an env variable]
63 # ---------------------------------------------------------------------
64 set(CMAKE_INSTALL_PREFIX $ENV{HOME}/opt)
65 set(CMAKE_PREFIX_PATH ${CMAKE_INSTALL_PREFIX}/lib64/pkgconfig ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
66 set(LD_LIBRARY_PATH ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_INSTALL_PREFIX}/lib)
67
68 # Optional dependencies order
69 # ---------------------------
70 #set(EXTRA_DEPENDENCIES_ORDER)
71
72 # Optional Extra global include path
73 # -----------------------------------
74 #set(EXTRA_INCLUDE_DIRS)
75
76 # Optional extra libraries
77 # -------------------------
78 #set(EXTRA_LINK_LIBRARIES)
79
80 # Optional force binding installation
81 # ------------------------------------
82 set(BINDINGS_INSTALL_PREFIX /opt )
83 # set(WIDGET_PREFIX DestinationPath)
84
85 # Optional force binding Linking flag
86 # ------------------------------------
87 # set(BINDINGS_LINK_FLAG LinkOptions )