ffe62f939af4cc3245b05208c7789e9b04f3d494
[platform/core/uifw/voice-control.git] / CMakeLists.txt
1 #
2 # Copyright (c) 2011-2015 Samsung Electronics Co., Ltd All Rights Reserved
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 # @file        CMakeLists.txt
17 # @author      Dongyeol Lee (dy3.lee@samsung.com)
18 # @version     0.1
19 # @brief
20
21 # Check minimum CMake version
22 CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
23
24 # Project name
25 PROJECT(vc)
26
27 SET(PREFIX ${CMAKE_INSTALL_PREFIX})
28 SET(EXEC_PREFIX "${PREFIX}")
29 SET(VERSION 0.2.10)
30
31 ADD_DEFINITIONS("-DVOICE_LIBDIR=\"${LIBDIR}\"")
32
33 # pkg config tool
34 INCLUDE(FindPkgConfig)
35
36 ## Include common directory ##
37 INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/common")
38 INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/include")
39
40 ## Dependent packages ##
41 INCLUDE(FindPkgConfig)
42 IF("${_TV_PRODUCT}" STREQUAL "TRUE")
43 pkg_check_modules(pkgs REQUIRED
44     aul capi-base-common capi-media-audio-io capi-media-sound-manager capi-network-bluetooth capi-system-info
45     cynara-client cynara-session dbus-1 dlog ecore glib-2.0 libtzplatform-config libxml-2.0 vconf #msfapi
46 )
47 ELSE()
48 pkg_check_modules(pkgs REQUIRED
49     aul capi-base-common capi-media-audio-io capi-media-sound-manager capi-network-bluetooth capi-system-info
50     cynara-client cynara-session dbus-1 dlog ecore glib-2.0 libtzplatform-config libxml-2.0 vconf
51 )
52 ENDIF()
53
54
55 ## API ##
56 ADD_SUBDIRECTORY(include)
57
58 ## Client library ##
59 ADD_SUBDIRECTORY(client)
60
61 ## Server daemon ##
62 ADD_SUBDIRECTORY(server)
63
64 ## config ##
65 INSTALL(FILES ${CMAKE_SOURCE_DIR}/vc-config.xml DESTINATION ${TZ_SYS_RO_SHARE}/voice/vc/1.0)
66
67 INSTALL(FILES ${CMAKE_SOURCE_DIR}/org.tizen.voice.vcserver.service DESTINATION ${TZ_SYS_RO_SHARE}/dbus-1/services)
68
69 INSTALL(FILES ${CMAKE_SOURCE_DIR}/vc-server.conf DESTINATION /etc/dbus-1/session.d)