Add server tts function 64/104364/2
authorSuyeon Hwang <stom.hwang@samsung.com>
Tue, 13 Dec 2016 07:33:22 +0000 (16:33 +0900)
committerSuyeon Hwang <stom.hwang@samsung.com>
Fri, 16 Dec 2016 06:33:07 +0000 (15:33 +0900)
Change-Id: Ia53516c520dc5fdf29019525f5ff856487ec65e8
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
25 files changed:
CMakeLists.txt
bin/aarch64/org.tizen.tts-engine-default
bin/aarch64/org.tizen.tts-engine-default-noti
bin/aarch64/org.tizen.tts-engine-default-sr
bin/armv7l/org.tizen.tts-engine-default
bin/armv7l/org.tizen.tts-engine-default-noti
bin/armv7l/org.tizen.tts-engine-default-sr
bin/i586/org.tizen.tts-engine-default
bin/i586/org.tizen.tts-engine-default-noti
bin/i586/org.tizen.tts-engine-default-sr
bin/x86_64/org.tizen.tts-engine-default
bin/x86_64/org.tizen.tts-engine-default-noti
bin/x86_64/org.tizen.tts-engine-default-sr
lib/aarch64/libsmtcodec.so [new file with mode: 0644]
lib/aarch64/libsmtserver.so [new file with mode: 0644]
lib/aarch64/libvoice-transport.so [new file with mode: 0644]
lib/armv7l/libsmtcodec.so [new file with mode: 0644]
lib/armv7l/libsmtserver.so [new file with mode: 0644]
lib/armv7l/libvoice-transport.so [new file with mode: 0644]
lib/i586/libsmtcodec.so [new file with mode: 0644]
lib/i586/libsmtserver.so [new file with mode: 0644]
lib/i586/libvoice-transport.so [new file with mode: 0644]
lib/x86_64/libsmtcodec.so [new file with mode: 0644]
lib/x86_64/libsmtserver.so [new file with mode: 0644]
lib/x86_64/libvoice-transport.so [new file with mode: 0644]

index c39e384..28d4ff2 100644 (file)
@@ -6,30 +6,45 @@ FIND_PROGRAM(UNAME NAMES uname)
 EXEC_PROGRAM("${UNAME}" ARGS "-m" OUTPUT_VARIABLE "ARCH")
 IF("${ARCH}" MATCHES "^arm.*")
 INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/armv7l/libsmt.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/armv7l/libsmtcodec.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/armv7l/libsmtserver.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/armv7l/libvoice-transport.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/armv7l/org.tizen.tts-engine-default DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/armv7l/org.tizen.tts-engine-default-noti DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/armv7l/org.tizen.tts-engine-default-sr DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/armv7l/org.tizen.tts-engine-default-setting DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 ELSEIF("${ARCH}" MATCHES "^i586.*")
 INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/i586/libsmt.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/i586/libsmtcodec.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/i586/libsmtserver.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/i586/libvoice-transport.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/i586/org.tizen.tts-engine-default DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/i586/org.tizen.tts-engine-default-noti DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/i586/org.tizen.tts-engine-default-sr DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/i586/org.tizen.tts-engine-default-setting DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 ELSEIF("${ARCH}" MATCHES "^i686.*")
 INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/i586/libsmt.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/i586/libsmtcodec.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/i586/libsmtserver.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/i586/libvoice-transport.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/i586/org.tizen.tts-engine-default DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/i586/org.tizen.tts-engine-default-noti DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/i586/org.tizen.tts-engine-default-sr DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/i586/org.tizen.tts-engine-default-setting DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 ELSEIF("${ARCH}" MATCHES "^aarch64.*")
 INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/aarch64/libsmt.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/aarch64/libsmtcodec.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/aarch64/libsmtserver.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/aarch64/libvoice-transport.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/aarch64/org.tizen.tts-engine-default DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/aarch64/org.tizen.tts-engine-default-noti DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/aarch64/org.tizen.tts-engine-default-sr DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/aarch64/org.tizen.tts-engine-default-setting DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 ELSEIF("${ARCH}" MATCHES "^x86_64.*")
 INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/x86_64/libsmt.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/x86_64/libsmtcodec.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/x86_64/libsmtserver.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
+INSTALL(FILES ${CMAKE_SOURCE_DIR}/lib/x86_64/libvoice-transport.so DESTINATION ${APP_INSTALL_PREFIX}/lib/ COMPONENT RuntimeLibraries)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/x86_64/org.tizen.tts-engine-default DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/x86_64/org.tizen.tts-engine-default-noti DESTINATION ${APP_INSTALL_PREFIX}/bin/)
 INSTALL(PROGRAMS ${CMAKE_SOURCE_DIR}/bin/x86_64/org.tizen.tts-engine-default-sr DESTINATION ${APP_INSTALL_PREFIX}/bin/)
index 9d5ff06..3543d8f 100755 (executable)
Binary files a/bin/aarch64/org.tizen.tts-engine-default and b/bin/aarch64/org.tizen.tts-engine-default differ
index 9d5ff06..3543d8f 100755 (executable)
Binary files a/bin/aarch64/org.tizen.tts-engine-default-noti and b/bin/aarch64/org.tizen.tts-engine-default-noti differ
index 9d5ff06..3543d8f 100755 (executable)
Binary files a/bin/aarch64/org.tizen.tts-engine-default-sr and b/bin/aarch64/org.tizen.tts-engine-default-sr differ
index 9fb15c5..5d74761 100755 (executable)
Binary files a/bin/armv7l/org.tizen.tts-engine-default and b/bin/armv7l/org.tizen.tts-engine-default differ
index 9fb15c5..5d74761 100755 (executable)
Binary files a/bin/armv7l/org.tizen.tts-engine-default-noti and b/bin/armv7l/org.tizen.tts-engine-default-noti differ
index 9fb15c5..5d74761 100755 (executable)
Binary files a/bin/armv7l/org.tizen.tts-engine-default-sr and b/bin/armv7l/org.tizen.tts-engine-default-sr differ
index 9752067..731ac31 100755 (executable)
Binary files a/bin/i586/org.tizen.tts-engine-default and b/bin/i586/org.tizen.tts-engine-default differ
index 9752067..731ac31 100755 (executable)
Binary files a/bin/i586/org.tizen.tts-engine-default-noti and b/bin/i586/org.tizen.tts-engine-default-noti differ
index 9752067..731ac31 100755 (executable)
Binary files a/bin/i586/org.tizen.tts-engine-default-sr and b/bin/i586/org.tizen.tts-engine-default-sr differ
index 2976ef8..b47431f 100755 (executable)
Binary files a/bin/x86_64/org.tizen.tts-engine-default and b/bin/x86_64/org.tizen.tts-engine-default differ
index 2976ef8..b47431f 100755 (executable)
Binary files a/bin/x86_64/org.tizen.tts-engine-default-noti and b/bin/x86_64/org.tizen.tts-engine-default-noti differ
index 2976ef8..b47431f 100755 (executable)
Binary files a/bin/x86_64/org.tizen.tts-engine-default-sr and b/bin/x86_64/org.tizen.tts-engine-default-sr differ
diff --git a/lib/aarch64/libsmtcodec.so b/lib/aarch64/libsmtcodec.so
new file mode 100644 (file)
index 0000000..e5c5c59
Binary files /dev/null and b/lib/aarch64/libsmtcodec.so differ
diff --git a/lib/aarch64/libsmtserver.so b/lib/aarch64/libsmtserver.so
new file mode 100644 (file)
index 0000000..634709d
Binary files /dev/null and b/lib/aarch64/libsmtserver.so differ
diff --git a/lib/aarch64/libvoice-transport.so b/lib/aarch64/libvoice-transport.so
new file mode 100644 (file)
index 0000000..63177e1
Binary files /dev/null and b/lib/aarch64/libvoice-transport.so differ
diff --git a/lib/armv7l/libsmtcodec.so b/lib/armv7l/libsmtcodec.so
new file mode 100644 (file)
index 0000000..71d5c76
Binary files /dev/null and b/lib/armv7l/libsmtcodec.so differ
diff --git a/lib/armv7l/libsmtserver.so b/lib/armv7l/libsmtserver.so
new file mode 100644 (file)
index 0000000..b35e1e0
Binary files /dev/null and b/lib/armv7l/libsmtserver.so differ
diff --git a/lib/armv7l/libvoice-transport.so b/lib/armv7l/libvoice-transport.so
new file mode 100644 (file)
index 0000000..546b946
Binary files /dev/null and b/lib/armv7l/libvoice-transport.so differ
diff --git a/lib/i586/libsmtcodec.so b/lib/i586/libsmtcodec.so
new file mode 100644 (file)
index 0000000..7b43c35
Binary files /dev/null and b/lib/i586/libsmtcodec.so differ
diff --git a/lib/i586/libsmtserver.so b/lib/i586/libsmtserver.so
new file mode 100644 (file)
index 0000000..0af9d57
Binary files /dev/null and b/lib/i586/libsmtserver.so differ
diff --git a/lib/i586/libvoice-transport.so b/lib/i586/libvoice-transport.so
new file mode 100644 (file)
index 0000000..9644b59
Binary files /dev/null and b/lib/i586/libvoice-transport.so differ
diff --git a/lib/x86_64/libsmtcodec.so b/lib/x86_64/libsmtcodec.so
new file mode 100644 (file)
index 0000000..12a1c21
Binary files /dev/null and b/lib/x86_64/libsmtcodec.so differ
diff --git a/lib/x86_64/libsmtserver.so b/lib/x86_64/libsmtserver.so
new file mode 100644 (file)
index 0000000..b495ad8
Binary files /dev/null and b/lib/x86_64/libsmtserver.so differ
diff --git a/lib/x86_64/libvoice-transport.so b/lib/x86_64/libvoice-transport.so
new file mode 100644 (file)
index 0000000..77505a7
Binary files /dev/null and b/lib/x86_64/libvoice-transport.so differ