Remove far field package
[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 FIND_PROGRAM(UNAME NAMES uname)
32 EXEC_PROGRAM("${UNAME}" ARGS "-m" OUTPUT_VARIABLE "ARCH")
33
34 ADD_DEFINITIONS("-DVOICE_LIBDIR=\"${LIBDIR}\"")
35 ADD_DEFINITIONS("-Werror")
36
37 # pkg config tool
38 INCLUDE(FindPkgConfig)
39
40 ## Include common directory ##
41 INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/common")
42 INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/include")
43
44 ## Dependent packages ##
45 INCLUDE(FindPkgConfig)
46 IF("${_TV_PRODUCT}" STREQUAL "TRUE")
47 pkg_check_modules(pkgs REQUIRED
48     aul capi-appfw-app-control capi-appfw-app-manager capi-base-common capi-media-audio-io capi-media-sound-manager ecore-wayland
49     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 
50 #farfield-voice-api
51 )
52 ELSE()
53 pkg_check_modules(pkgs REQUIRED
54     aul capi-appfw-app-control capi-appfw-app-manager capi-base-common capi-media-audio-io capi-media-sound-manager ecore-wayland
55     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
56 )
57 ENDIF()
58
59
60 ## API ##
61 ADD_SUBDIRECTORY(include)
62
63 ## Client library ##
64 ADD_SUBDIRECTORY(client)
65
66 ## Server daemon ##
67 ADD_SUBDIRECTORY(server)
68
69 ## Engine Parser ##
70 ADD_SUBDIRECTORY(engine-parser)
71
72 INSTALL(FILES ${CMAKE_SOURCE_DIR}/voice-control.info DESTINATION ${TZ_SYS_RO_SHARE}/parser-plugins)
73
74 ## config ##
75 INSTALL(FILES ${CMAKE_SOURCE_DIR}/vc-config.xml DESTINATION ${TZ_SYS_RO_SHARE}/voice/vc/1.0)
76
77 INSTALL(FILES ${CMAKE_SOURCE_DIR}/org.tizen.voice.vcserver.service DESTINATION ${TZ_SYS_RO_SHARE}/dbus-1/services)
78
79 INSTALL(FILES ${CMAKE_SOURCE_DIR}/vc-server.conf DESTINATION /etc/dbus-1/session.d)
80
81 ## vc_getengine ##
82 IF("${ARCH}" MATCHES "^arm.*")
83 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/armv7l/vc_getengine DESTINATION ${TZ_SYS_BIN})
84 ELSEIF("${ARCH}" MATCHES "^i586.*")
85 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/i586/vc_getengine DESTINATION ${TZ_SYS_BIN})
86 ELSEIF("${ARCH}" MATCHES "^i686.*")
87 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/i586/vc_getengine DESTINATION ${TZ_SYS_BIN})
88 ELSEIF("${ARCH}" MATCHES "^aarch64.*")
89 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/aarch64/vc_getengine DESTINATION ${TZ_SYS_BIN})
90 ELSEIF("${ARCH}" MATCHES "^x86_64.*")
91 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/x86_64/vc_getengine DESTINATION ${TZ_SYS_BIN})
92 ENDIF()