Migrate app-templates to CMake module
[src/low-level-can-generator.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 can-config-generator)
22 set(PROJECT_VERSION "1.0")
23 set(PROJECT_PRETTY_NAME "CAN configuration generator")
24 set(PROJECT_DESCRIPTION "Generator that convert JSON file following OpenXC spec to configuration-generated.cpp file for the low level CAN binding.")
25 set(PROJECT_URL "https://gerrit.automotivelinux.org/gerrit/src/low-level-can-generator")
26 set(PROJECT_ICON "icon.png")
27 set(PROJECT_AUTHOR "Loïc Collignon")
28 set(PROJECT_AUTHOR_MAIL "loic.collignon@iot.bzh")
29 set(PROJECT_ICON "icon.png")
30 set(PROJECT_LICENCE "APL2.0")
31 set(PROJECT_LANGUAGES,"C")
32
33 # Where are stored the project configuration files
34 # relative to the root project directory
35 set(PROJECT_CMAKE_CONF_DIR "conf.d")
36
37 # Where are stored your external libraries for your project. This is 3rd party library that you don't maintain
38 # but used and must be built and linked.
39 # set(PROJECT_LIBDIR "libs")
40
41 # Where are stored data for your application. Pictures, static resources must be placed in that folder.
42 # set(PROJECT_RESOURCES "data")
43
44
45 # Compilation Mode (DEBUG, RELEASE)
46 # ----------------------------------
47 set(CMAKE_BUILD_TYPE "DEBUG")
48
49 # Kernel selection if needed. Overload the detected compiler.
50 # -----------------------------------------------
51 #set (kernel_minimal_version 4.8)
52
53 # Compiler selection if needed. Overload the detected compiler.
54 # -----------------------------------------------
55 set (gcc_minimal_version 4.9)
56
57 # PKG_CONFIG required packages
58 # -----------------------------
59 set (PKG_REQUIRED_LIST)
60
61 # Static constante definition
62 # -----------------------------
63 add_compile_options($<$<COMPILE_LANGUAGE:CXX>:-std=c++11>)
64
65 # Print a helper message when every thing is finished
66 # ----------------------------------------------------
67 set(CLOSING_MESSAGE "Test with: ./src/can-config-generator -m ../tests/basic.json -o application-generated.cpp")
68
69 # (BUG!!!) as PKG_CONFIG_PATH does not work [should be an env variable]
70 # ---------------------------------------------------------------------
71 # set(CMAKE_INSTALL_PREFIX $ENV{HOME}/opt)
72 set(CMAKE_PREFIX_PATH ${CMAKE_INSTALL_PREFIX}/lib64/pkgconfig ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
73 set(LD_LIBRARY_PATH ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_INSTALL_PREFIX}/lib)
74
75 # Optional location for config.xml.in
76 # -----------------------------------
77 #set(WIDGET_CONFIG_TEMPLATE ${CMAKE_CURRENT_SOURCE_DIR}/conf.d/wgt/config.xml.in)
78
79 # Mandatory widget Mimetype specification
80 # --------------------------------------------------
81 # Choose between :
82 # - application/vnd.agl.service
83 # - application/vnd.agl.native
84 # - application/x-executable
85 # - text/html
86 #
87 set(WIDGET_TYPE application/x-executable)
88
89 # Mandatory Widget entry point file.
90 # ----------------------------------------------------
91 # This is the file that will be executed, loaded,...
92 # at launch time by the application framework
93 #
94 # !IMPORTANT! : Service Widget Mimetype has to specified
95 # the WIDGET_ENTRY_POINT "lib" which is the default directory
96 # that holds the bindings.
97 #
98 #set(WIDGET_ENTRY_POINT None)
99
100 # Optional dependencies order
101 # ---------------------------
102 #set(EXTRA_DEPENDENCIES_ORDER)
103
104 # Optional Extra global include path
105 # -----------------------------------
106 #set(EXTRA_INCLUDE_DIRS)
107
108 # Optional extra libraries
109 # -------------------------
110 #set(EXTRA_LINK_LIBRARIES)
111
112 # Optional force binding installation
113 # ------------------------------------
114 # set(BINDINGS_INSTALL_PREFIX PrefixPath )
115
116 # Optional force binding Linking flag
117 # ------------------------------------
118 # set(BINDINGS_LINK_FLAG LinkOptions )
119
120 # Optional force package prefix generation, like widget
121 # -----------------------------------------------------
122 # set(PACKAGE_PREFIX DestinationPath)
123
124 # Optional Application Framework security token
125 # and port use for remote debugging.
126 #------------------------------------------------------------
127 #set(AFB_TOKEN   ""      CACHE PATH "Default AFB_TOKEN")
128 #set(AFB_REMPORT "1234" CACHE PATH "Default AFB_TOKEN")
129
130 # This include is mandatory and MUST happens at the end
131 # of this file, else you expose you to unexpected behavior
132 #
133 # This CMake module could be found at the following url:
134 # https://gerrit.automotivelinux.org/gerrit/#/admin/projects/src/cmake-apps-module
135 # -----------------------------------------------------------
136 include(CMakeAfbTemplates)