1 # Copyright (c) 2011-2016 Samsung Electronics Co., Ltd All Rights Reserved
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
16 # @file CMakeLists.txt
17 # @author Dongyeol Lee (dy3.lee@samsung.com)
21 CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
24 SET(PREFIX ${CMAKE_INSTALL_PREFIX})
25 SET(EXEC_PREFIX "${PREFIX}")
28 ADD_DEFINITIONS("-DSTT_LIBDIR=\"${LIBDIR}\"")
29 ADD_DEFINITIONS("-Werror")
31 ## Include common directory ##
32 INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/common")
33 INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/include")
35 ## Dependent packages ##
36 INCLUDE(FindPkgConfig)
37 IF("${_TV_PRODUCT}" STREQUAL "TRUE")
38 pkg_check_modules(pkgs REQUIRED
39 aul capi-media-audio-io capi-media-wav-player capi-network-bluetooth capi-system-info cynara-client cynara-session
40 dbus-1 dlog ecore glib-2.0 libtzplatform-config libxml-2.0 vconf vconf-internal-keys
43 pkg_check_modules(pkgs REQUIRED
44 aul capi-media-audio-io capi-media-wav-player capi-system-info cynara-client cynara-session
45 dbus-1 dlog ecore glib-2.0 libtzplatform-config libxml-2.0 vconf vconf-internal-keys
49 pkg_check_modules(pkgs_test REQUIRED
54 ADD_SUBDIRECTORY(include)
57 ADD_SUBDIRECTORY(client)
60 ADD_SUBDIRECTORY(server)
63 ADD_SUBDIRECTORY(test)
66 ADD_SUBDIRECTORY(engine-parser)
69 INSTALL(FILES ${CMAKE_SOURCE_DIR}/stt-config.xml DESTINATION ${TZ_SYS_RO_SHARE}/voice/stt/1.0)
72 INSTALL(FILES ${CMAKE_SOURCE_DIR}/org.tizen.voice.sttserver.service DESTINATION ${TZ_SYS_RO_SHARE}/dbus-1/services)
74 INSTALL(FILES ${CMAKE_SOURCE_DIR}/stt-server.conf DESTINATION /etc/dbus-1/session.d)
75 INSTALL(FILES ${CMAKE_SOURCE_DIR}/500.stt_upgrade_24to30.sh DESTINATION ${TZ_SYS_RO_SHARE}/upgrade/scripts)