2 # Copyright (c) 2011-2015 Samsung Electronics Co., Ltd All Rights Reserved
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.
16 # @file CMakeLists.txt
17 # @author Dongyeol Lee (dy3.lee@samsung.com)
21 # Check minimum CMake version
22 CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
27 SET(PREFIX ${CMAKE_INSTALL_PREFIX})
28 SET(EXEC_PREFIX "${PREFIX}")
31 FIND_PROGRAM(UNAME NAMES uname)
32 EXEC_PROGRAM("${UNAME}" ARGS "-m" OUTPUT_VARIABLE "ARCH")
34 ADD_DEFINITIONS("-DVOICE_LIBDIR=\"${LIBDIR}\"")
35 ADD_DEFINITIONS("-Werror")
36 # for the use of ecore_wl2
37 ADD_DEFINITIONS("-DEFL_BETA_API_SUPPORT")
40 INCLUDE(FindPkgConfig)
42 ## Include common directory ##
43 INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/common")
44 INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/include")
46 ## Dependent packages ##
47 INCLUDE(FindPkgConfig)
48 IF("${_TV_PRODUCT}" STREQUAL "TRUE")
49 pkg_check_modules(pkgs REQUIRED
50 aul buxton2 capi-appfw-app-control capi-appfw-app-manager capi-base-common capi-media-audio-io capi-media-sound-manager ecore-wl2
51 capi-network-bluetooth capi-network-bluetooth-tv capi-system-info cynara-client cynara-session dbus-1 db-util dlog ecore glib-2.0 json-glib-1.0 libgum libtzplatform-config libxml-2.0 sqlite3 vconf msfapi farfield-voice-api
54 pkg_check_modules(pkgs REQUIRED
55 aul buxton2 capi-appfw-app-control capi-appfw-app-manager capi-base-common capi-media-audio-io capi-media-sound-manager ecore-wl2
56 capi-system-info cynara-client cynara-session dbus-1 db-util dlog ecore glib-2.0 json-glib-1.0 libgum libtzplatform-config libxml-2.0 sqlite3 vconf
62 ADD_SUBDIRECTORY(include)
65 ADD_SUBDIRECTORY(client)
68 ADD_SUBDIRECTORY(server)
71 ADD_SUBDIRECTORY(engine-parser)
73 INSTALL(FILES ${CMAKE_SOURCE_DIR}/voice-control.info DESTINATION ${TZ_SYS_RO_SHARE}/parser-plugins)
76 INSTALL(FILES ${CMAKE_SOURCE_DIR}/vc-config.xml DESTINATION ${TZ_SYS_RO_SHARE}/voice/vc/1.0)
78 INSTALL(FILES ${CMAKE_SOURCE_DIR}/org.tizen.voice.vcserver.service DESTINATION ${TZ_SYS_RO_SHARE}/dbus-1/services)
80 INSTALL(FILES ${CMAKE_SOURCE_DIR}/vc-server.conf DESTINATION /etc/dbus-1/session.d)
83 IF("${ARCH}" MATCHES "^arm.*")
84 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/armv7l/vc_getengine DESTINATION ${TZ_SYS_BIN})
85 ELSEIF("${ARCH}" MATCHES "^i586.*")
86 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/i586/vc_getengine DESTINATION ${TZ_SYS_BIN})
87 ELSEIF("${ARCH}" MATCHES "^i686.*")
88 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/i586/vc_getengine DESTINATION ${TZ_SYS_BIN})
89 ELSEIF("${ARCH}" MATCHES "^aarch64.*")
90 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/aarch64/vc_getengine DESTINATION ${TZ_SYS_BIN})
91 ELSEIF("${ARCH}" MATCHES "^x86_64.*")
92 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/x86_64/vc_getengine DESTINATION ${TZ_SYS_BIN})