Add prepare_sync function to connect directly
[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 ${VERSION})
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 # for the use of ecore_wl2
37 ADD_DEFINITIONS("-DEFL_BETA_API_SUPPORT")
38
39 # pkg config tool
40 INCLUDE(FindPkgConfig)
41
42 ## Include common directory ##
43 INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/common")
44 INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/include")
45
46 ## Dependent packages ##
47 INCLUDE(FindPkgConfig)
48 pkg_check_modules(pkgs REQUIRED
49     aul buxton2 capi-appfw-app-control capi-appfw-app-manager capi-base-common capi-media-audio-io capi-media-sound-manager ecore-wl2
50     capi-system-info cynara-client cynara-session db-util dlog ecore glib-2.0 json-glib-1.0 libgum libtzplatform-config libxml-2.0 sqlite3 vconf gmock bundle rpc-port
51 )
52
53
54 ## API ##
55 ADD_SUBDIRECTORY(include)
56
57 ## Client library ##
58 ADD_SUBDIRECTORY(client)
59
60 ## Server daemon ##
61 ADD_SUBDIRECTORY(server)
62
63 ## Engine Parser ##
64 ADD_SUBDIRECTORY(engine-parser)
65
66 ## Dependency audio manager ##
67 ADD_SUBDIRECTORY(audio-manager)
68
69 INSTALL(FILES ${CMAKE_SOURCE_DIR}/voice-control.info DESTINATION ${TZ_SYS_RO_SHARE}/parser-plugins)
70
71 ## config ##
72 INSTALL(FILES ${CMAKE_SOURCE_DIR}/vc-config.xml DESTINATION ${TZ_SYS_RO_SHARE}/voice/vc/1.0)
73
74 ## vc_getengine ##
75 IF("${ARCH}" MATCHES "^arm.*")
76 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/armv7l/vc_getengine DESTINATION ${TZ_SYS_BIN})
77 ELSEIF("${ARCH}" MATCHES "^i586.*")
78 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/i586/vc_getengine DESTINATION ${TZ_SYS_BIN})
79 ELSEIF("${ARCH}" MATCHES "^i686.*")
80 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/i586/vc_getengine DESTINATION ${TZ_SYS_BIN})
81 ELSEIF("${ARCH}" MATCHES "^aarch64.*")
82 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/aarch64/vc_getengine DESTINATION ${TZ_SYS_BIN})
83 ELSEIF("${ARCH}" MATCHES "^x86_64.*")
84 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/x86_64/vc_getengine DESTINATION ${TZ_SYS_BIN})
85 ENDIF()
86
87 ## Test
88 IF(NOT DEFINED MINIMUM_BUILD)
89 ENABLE_TESTING()
90 SET(UNITTEST_VC vc-unittests)
91 ADD_TEST(NAME ${UNITTEST_VC} COMMAND ${UNITTEST_VC}
92                                     WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/tests)
93
94 ADD_SUBDIRECTORY(tests)
95 ENDIF(NOT DEFINED MINIMUM_BUILD)