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 cmake_minimum_required(VERSION 2.8)
19 set(TARGETS_HSBINDER homescreen-service)
24 pkg_check_modules(hs_binding_depends afb-daemon glib-2.0 gio-2.0 gio-unix-2.0 json-c)
25 set(binding_hs_sources
34 link_libraries(-Wl,--as-needed -Wl,--gc-sections -Wl,--no-undefined)
35 include_directories(${PROJECT_SOURCE_DIR}/include)
36 add_library(${TARGETS_HSBINDER} MODULE ${binding_hs_sources})
38 target_compile_options(${TARGETS_HSBINDER} PRIVATE ${hs_binding_depends_CFLAGS})
40 target_compile_options(${TARGETS_HSBINDER} PRIVATE -g -O0)
41 else(DEFINED DEBUGMODE)
42 target_compile_options(${TARGETS_HSBINDER} PRIVATE -g -O2)
43 endif(DEFINED DEBUGMODE)
45 target_include_directories(${TARGETS_HSBINDER} PRIVATE ${hs_binding_depends_INCLUDE_DIRS})
46 target_link_libraries(${TARGETS_HSBINDER} ${CMAKE_THREAD_LIBS_INIT} ${link_libraries} ${hs_binding_depends_LIBRARIES})
48 # Binder exposes a unique public entry point
50 set_target_properties(${TARGETS_HSBINDER} PROPERTIES
52 LINK_FLAGS "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/export.map"
55 # installation directory
56 #INSTALL(TARGETS ${TARGETS_HSBINDER}
57 # LIBRARY DESTINATION ${binding_install_dir})
59 if(NOT EXISTS ${PROJECT_BINARY_DIR}/package)
60 add_custom_command(TARGET ${TARGETS_HSBINDER} POST_BUILD
61 COMMAND cp -rf ${PROJECT_SOURCE_DIR}/package ${PROJECT_BINARY_DIR}
65 add_custom_command(TARGET ${TARGETS_HSBINDER} POST_BUILD
66 COMMAND mkdir -p ${PROJECT_BINARY_DIR}/package/root/lib
67 COMMAND cp -rf ${PROJECT_BINARY_DIR}/src/${TARGETS_HSBINDER}.so ${PROJECT_BINARY_DIR}/package/root/lib
68 COMMAND mkdir -p ${PROJECT_BINARY_DIR}/package/root/etc
69 COMMAND cp -f ${CMAKE_SOURCE_DIR}/conf/hs-conf.json ${PROJECT_BINARY_DIR}/package/root/etc
70 COMMAND cp -f ${CMAKE_SOURCE_DIR}/conf/lastmode.json ${PROJECT_BINARY_DIR}/package/root/etc
73 add_custom_target(package DEPENDS ${PROJECT_BINARY_DIR}/package/root
74 COMMAND wgtpkg-pack -f -o ${PROJECT_BINARY_DIR}/package/${TARGETS_HSBINDER}.wgt ${PROJECT_BINARY_DIR}/package/root