2 # Copyright (c) 2017 TOYOTA MOTOR CORPORATION
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
8 # http://www.apache.org/licenses/LICENSE-2.0
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.
17 project(libhomescreen C CXX)
19 cmake_minimum_required(VERSION 2.8)
21 set(PROJECT_NAME "LIBHOMESCREEN")
22 set(PROJECT_VERSION "1.0")
23 set(PROJECT_PRETTY_NAME "LIBHOMESCREEN")
24 set(PROJECT_DESCRIPTION "Library for accessing agl service homescreen 2017 with C/C++")
25 set(PROJECT_INCLUDEDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_INCLUDEDIR})
26 set(PROJECT_LIBDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR})
27 set(LIBHOMESCREEN_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/include)
30 INCLUDE(FindPkgConfig)
31 link_libraries(-Wl,--as-needed -Wl,--gc-sections -Wl,--no-undefined)
33 set(CMAKE_BUILD_TYPE Debug)
34 set(USE_HMI_DEBUG FALSE)
37 add_subdirectory(include)
39 #generate configure file
40 configure_file(libhomescreen.pc.in libhomescreen.pc @ONLY)
41 INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/libhomescreen.pc
43 ${CMAKE_INSTALL_LIBDIR}/pkgconfig)