d4c141bd90e619a221ed9a31ba166029bc22ec94
[apps/agl-service-data-persistence.git] / ll-auth-binding / conf.d / cmake / config.cmake
1 ###########################################################################
2 # Copyright 2015, 2016, 2017 IoT.bzh
3 #
4 # author: Loïc Collignon <loic.collignon@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 ll-auth-binding)
22 set(PROJECT_VERSION "0.1")
23 set(PROJECT_PRETTY_NAME "Low Level Auth Binding")
24 set(PROJECT_DESCRIPTION "A low level binding to log users in and out.")
25 set(PROJECT_URL "")
26 set(PROJECT_ICON "icon.png")
27 set(PROJECT_AUTHOR "Collignon, Loïc")
28 set(PROJECT_AUTHOR_MAIL "loic.collignon@iot.bzh")
29 set(PROJECT_LICENSE "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. 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. Impose a minimal version.
57 # -----------------------------------------------
58 set (gcc_minimal_version 4.9)
59
60 # PKG_CONFIG required packages
61 # -----------------------------
62 set (PKG_REQUIRED_LIST
63         json-c
64         libsystemd>=222
65         afb-daemon
66         libmicrohttpd>=0.9.55
67         libudev
68 )
69
70 set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
71 set(THREADS_PREFER_PTHREAD_FLAG TRUE)
72 find_package(Threads REQUIRED)
73
74 # Static constante definition
75 # -----------------------------
76 add_compile_options()
77
78 # LANG Specific compile flags set for all build types
79 set(CMAKE_C_FLAGS "")
80 set(CMAKE_CXX_FLAGS "")
81
82 # Print a helper message when every thing is finished
83 # ----------------------------------------------------
84 #set(CLOSING_MESSAGE "")
85 #set(PACKAGE_MESSAGE "Install widget file using in the target : afm-util install ${PROJECT_NAME}.wgt")
86
87 # (BUG!!!) as PKG_CONFIG_PATH does not work [should be an env variable]
88 # ---------------------------------------------------------------------
89 set(CMAKE_INSTALL_PREFIX $ENV{HOME}/opt)
90 set(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} ${CMAKE_INSTALL_PREFIX}/lib64/pkgconfig ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
91 set(LD_LIBRARY_PATH ${CMAKE_INSTALL_PREFIX}/lib64 ${CMAKE_INSTALL_PREFIX}/lib)
92
93 # Optional location for config.xml.in
94 # -----------------------------------
95 #set(WIDGET_CONFIG_TEMPLATE ${CMAKE_CURRENT_SOURCE_DIR}/conf.d/config.xml.in)
96
97 # Mandatory widget Mimetype specification of the main unit
98 # --------------------------------------------------------------------------
99 # Choose between :
100 #- text/html : HTML application,
101 #       content.src designates the home page of the application
102 #
103 #- application/vnd.agl.native : AGL compatible native,
104 #       content.src designates the relative path of the binary.
105 #
106 # - application/vnd.agl.service: AGL service, content.src is not used.
107 #
108 #- ***application/x-executable***: Native application,
109 #       content.src designates the relative path of the binary.
110 #       For such application, only security setup is made.
111 #
112 set(WIDGET_TYPE MimeType_Not_Set)
113
114 # Mandatory Widget entry point file of the main unit
115 # --------------------------------------------------------------
116 # This is the file that will be executed, loaded,
117 # at launch time by the application framework.
118 #
119 set(WIDGET_ENTRY_POINT EntryPoint_Path_Not_Set)
120
121 # Optional dependencies order
122 # ---------------------------
123 #set(EXTRA_DEPENDENCIES_ORDER)
124
125 # Optional Extra global include path
126 # -----------------------------------
127 #set(EXTRA_INCLUDE_DIRS)
128
129 # Optional extra libraries
130 # -------------------------
131 #set(EXTRA_LINK_LIBRARIES)
132
133 # Optional force binding installation
134 # ------------------------------------
135 # set(BINDINGS_INSTALL_PREFIX PrefixPath )
136
137 # Optional force binding Linking flag
138 # ------------------------------------
139 # set(BINDINGS_LINK_FLAG LinkOptions )
140
141 # Optional force package prefix generation, like widget
142 # -----------------------------------------------------
143 # set(PKG_PREFIX DestinationPath)
144
145 # Optional Application Framework security token
146 # and port use for remote debugging.
147 #------------------------------------------------------------
148 #set(AFB_TOKEN   ""      CACHE PATH "Default AFB_TOKEN")
149 #set(AFB_REMPORT "1234" CACHE PATH "Default AFB_TOKEN")
150
151 # This include is mandatory and MUST happens at the end
152 # of this file, else you expose you to unexpected behavior
153 # -----------------------------------------------------------
154 include(${PROJECT_APP_TEMPLATES_DIR}/cmake/common.cmake)