change project name
[apps/agl-service-homescreen.git] / src / 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 cmake_minimum_required(VERSION 2.8)
18
19 set(TARGETS_HSBINDER homescreen-service)
20
21 INCLUDE(FindThreads)
22 FIND_PACKAGE(Threads)
23
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
26   homescreen.cpp
27   hs-helper.cpp
28   hs-clientmanager.cpp
29   hs-client.cpp)
30
31 link_libraries(-Wl,--as-needed -Wl,--gc-sections -Wl,--no-undefined)
32 include_directories(${PROJECT_SOURCE_DIR}/include)
33 add_library(${TARGETS_HSBINDER} MODULE ${binding_hs_sources})
34
35 target_compile_options(${TARGETS_HSBINDER} PRIVATE ${hs_binding_depends_CFLAGS})
36 if(DEFINED DEBUGMODE)
37  target_compile_options(${TARGETS_HSBINDER} PRIVATE -g -O0)
38 else(DEFINED DEBUGMODE)
39  target_compile_options(${TARGETS_HSBINDER} PRIVATE -g -O2)
40 endif(DEFINED DEBUGMODE)
41
42 target_include_directories(${TARGETS_HSBINDER} PRIVATE ${hs_binding_depends_INCLUDE_DIRS})
43 target_link_libraries(${TARGETS_HSBINDER} ${CMAKE_THREAD_LIBS_INIT} ${link_libraries} ${hs_binding_depends_LIBRARIES})
44
45 # Binder exposes a unique public entry point
46
47 set_target_properties(${TARGETS_HSBINDER} PROPERTIES
48     PREFIX ""
49     LINK_FLAGS "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/export.map"
50     )
51
52 # installation directory
53 #INSTALL(TARGETS ${TARGETS_HSBINDER}
54 #    LIBRARY DESTINATION ${binding_install_dir})
55
56 if(NOT EXISTS ${PROJECT_BINARY_DIR}/package)
57     add_custom_command(TARGET ${TARGETS_HSBINDER} POST_BUILD
58         COMMAND cp -rf ${PROJECT_SOURCE_DIR}/package ${PROJECT_BINARY_DIR}
59     )
60 endif()
61
62 add_custom_command(TARGET ${TARGETS_HSBINDER} POST_BUILD
63     COMMAND mkdir -p ${PROJECT_BINARY_DIR}/package/root/lib
64     COMMAND cp -rf ${PROJECT_BINARY_DIR}/src/${TARGETS_HSBINDER}.so ${PROJECT_BINARY_DIR}/package/root/lib
65 )
66
67 add_custom_target(package DEPENDS ${PROJECT_BINARY_DIR}/package/root
68     COMMAND wgtpkg-pack -f -o ${PROJECT_BINARY_DIR}/package/${TARGETS_HSBINDER}.wgt ${PROJECT_BINARY_DIR}/package/root
69 )