a4217b94e5cfe292871a632a7a1d51f87f0bc252
[apps/agl-service-can-low-level.git] / conf.d / cmake / 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-service)
22 set(PROJECT_VERSION "4.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_LICENCE "APL2.0")
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/app-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. Overload the detected compiler.
51 # -----------------------------------------------
52 set (kernel_minimal_version 4.8)
53
54 # Compiler selection if needed. Overload the detected compiler.
55 # -----------------------------------------------
56 set (gcc_minimal_version 4.9)
57
58 # PKG_CONFIG required packages
59 # -----------------------------
60 set (PKG_REQUIRED_LIST
61         json-c
62         libsystemd
63         afb-daemon
64 )
65
66 # Static constante definition
67 # -----------------------------
68 add_compile_options(-D_REENTRANT)
69 add_compile_options(-DPB_FIELD_16BIT)
70
71 # LANG Specific compile flags set for all build types
72 set(CMAKE_C_FLAGS "")
73 set(CMAKE_CXX_FLAGS "-std=c++11")
74
75 # Print a helper message when every thing is finished
76 # ----------------------------------------------------
77 set(CLOSING_MESSAGE "Test with: afb-daemon --rootdir=\$\$(pwd)/package --binding=\$\$(pwd)/package/lib/afb-low-can.so --port=1234 --tracereq=common --token=\"1\" --verbose")
78 set(WIDGET_MESSAGE "Install widget file using in the target : afm-util install ${PROJECT_NAME}.wgt")
79
80 # (BUG!!!) as PKG_CONFIG_PATH does not work [should be an env variable]
81 # ---------------------------------------------------------------------
82 set(CMAKE_INSTALL_PREFIX $ENV{HOME}/opt)
83 set(CMAKE_PREFIX_PATH ${CMAKE_INSTALL_PREFIX}/lib64/pkgconfig ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
84 set(LD_LIBRARY_PATH ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_INSTALL_PREFIX}/lib)
85
86 # Optional location for config.xml.in
87 # -----------------------------------
88 set(WIDGET_CONFIG_TEMPLATE ${CMAKE_CURRENT_SOURCE_DIR}/conf.d/wgt/config.xml.in)
89
90 # Mandatory widget Mimetype specification
91 # --------------------------------------------------
92 # Choose between :
93 # - application/vnd.agl.service
94 # - application/vnd.agl.native
95 # - application/x-executable
96 # - text/html
97 #
98 set(WIDGET_TYPE application/vnd.agl.service)
99
100 # Mandatory Widget entry point file.
101 # ----------------------------------------------------
102 # This is the file that will be executed, loaded,...
103 # at launch time by the application framework
104 #
105 # !IMPORTANT! : Service Widget Mimetype has to specified
106 # the WIDGET_ENTRY_POINT "lib" which is the default directory
107 # that holds the bindings.
108 #
109 set(WIDGET_ENTRY_POINT lib/afb-low-can.so)
110
111 # Optional dependencies order
112 # ---------------------------
113 #set(EXTRA_DEPENDENCIES_ORDER)
114
115 # Optional Extra global include path
116 # -----------------------------------
117 #set(EXTRA_INCLUDE_DIRS)
118
119 # Optional extra libraries
120 # -------------------------
121 #set(EXTRA_LINK_LIBRARIES)
122
123 # Optional force binding installation
124 # ------------------------------------
125 # set(BINDINGS_INSTALL_PREFIX PrefixPath )
126
127 # Optional force binding Linking flag
128 # ------------------------------------
129 # set(BINDINGS_LINK_FLAG LinkOptions )
130
131 # Optional force package prefix generation, like widget
132 # -----------------------------------------------------
133 # set(PACKAGE_PREFIX DestinationPath)
134
135 # Optional Application Framework security token
136 # and port use for remote debugging.
137 #------------------------------------------------------------
138 #set(AFB_TOKEN   ""      CACHE PATH "Default AFB_TOKEN")
139 #set(AFB_REMPORT "1234" CACHE PATH "Default AFB_TOKEN")
140
141 # This include is mandatory and MUST happens at the end
142 # of this file, else you expose you to unexpected behavior
143 # -----------------------------------------------------------
144 include(${PROJECT_APP_TEMPLATES_DIR}/cmake/common.cmake)