update directory path for migration
[platform/core/uifw/stt.git] / CMakeLists.txt
1 # Copyright (c) 2011-2014 Samsung Electronics Co., Ltd All Rights Reserved
2 #
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
6 #
7 #        http://www.apache.org/licenses/LICENSE-2.0
8 #
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.
14 #
15 #
16 # @file        CMakeLists.txt
17 # @author      Dongyeol Lee (dy3.lee@samsung.com)
18 # @version     0.1
19 # @brief
20
21 CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
22 PROJECT(stt)
23
24 SET(PREFIX ${CMAKE_INSTALL_PREFIX})
25 SET(EXEC_PREFIX "${PREFIX}")
26 SET(VERSION 0.2.54)
27
28 ADD_DEFINITIONS("-DSTT_LIBDIR=\"${LIBDIR}\"")
29
30 ## Include common directory ##
31 INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/common")
32 INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/include")
33
34 ## Dependent packages ##
35 INCLUDE(FindPkgConfig)
36 pkg_check_modules(pkgs REQUIRED 
37         aul capi-media-audio-io capi-media-wav-player capi-system-info dbus-1 dlog ecore glib-2.0
38         libtzplatform-config libxml-2.0 vconf vconf-internal-keys
39 )
40
41 pkg_check_modules(pkgs_test REQUIRED
42     dlog ecore
43 )
44
45 ## API ##
46 ADD_SUBDIRECTORY(include)
47
48 ## Client library ##
49 ADD_SUBDIRECTORY(client)
50
51 ## Server daemon ##
52 ADD_SUBDIRECTORY(server)
53
54 ## Test ##
55 ADD_SUBDIRECTORY(test)
56
57 ## config ##
58 INSTALL(FILES ${CMAKE_SOURCE_DIR}/stt-config.xml DESTINATION ${TZ_SYS_RO_SHARE}/voice/stt/1.0)
59
60 ## Dbus service ##
61 INSTALL(FILES ${CMAKE_SOURCE_DIR}/org.tizen.voice.sttserver.service DESTINATION ${TZ_SYS_RO_SHARE}/dbus-1/services)
62
63 INSTALL(FILES ${CMAKE_SOURCE_DIR}/stt-server.conf DESTINATION /etc/dbus-1/session.d)