update doc
[apps/agl-service-homescreen.git] / CMakeLists.txt
1 #
2 # Copyright (c) 2017 TOYOTA MOTOR CORPORATION
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #      http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 project(HomeScreenService C CXX)
18
19 cmake_minimum_required(VERSION 3.0)
20
21 set(PROJECT_NAME "HomeScreen Service")
22 set(PROJECT_VERSION "1.0")
23 set(PROJECT_PRETTY_NAME "HM")
24 set(PROJECT_DESCRIPTION "HomeScreen Service")
25 set(PROJECT_INCLUDEDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_INCLUDEDIR})
26 set(PROJECT_LIBDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR})
27 set(binding_install_dir ${PREFIX}/lib/homescreen)
28 set(PROJECT_BINDINGDIR ${binding_install_dir})
29
30 # get pkgconfig
31 INCLUDE(FindPkgConfig)
32 link_libraries(-Wl,--as-needed -Wl,--gc-sections -Wl,--no-undefined)
33
34 set(CMAKE_BUILD_TYPE Debug)
35 set(DEBUGMODE "1")
36 add_definitions(-DDEBUGMODE)
37
38 add_subdirectory(src)