summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTuomas Tuononen <tuomas.tuononen@code-q.fi>2016-01-28 17:28:24 +0200
committerTuomas Tuononen <tuomas.tuononen@code-q.fi>2016-04-05 20:18:55 +0000
commita75c3c174782f4c8e269d5d5854e780148a63b9c (patch)
tree6f8fb51835be6bd95054c3796e8de7d961bab90e
parent71a3cbebefd2b05acf0536b30a14aa51a8565b4d (diff)
Add project configuration for Vocalizer Expressive plugin
Change-Id: Idfe7754bf22564ee518678598747234d57f638ce Reviewed-by: Frederik Gladhorn <frederik.gladhorn@theqtcompany.com>
-rw-r--r--config.tests/vocalizer/vocalizer.cpp48
-rw-r--r--config.tests/vocalizer/vocalizer.pro3
-rw-r--r--qtspeech.pro1
-rw-r--r--src/plugins/tts/tts.pro4
4 files changed, 56 insertions, 0 deletions
diff --git a/config.tests/vocalizer/vocalizer.cpp b/config.tests/vocalizer/vocalizer.cpp
new file mode 100644
index 0000000..5ef65cd
--- /dev/null
+++ b/config.tests/vocalizer/vocalizer.cpp
@@ -0,0 +1,48 @@
+/****************************************************************************
+**
+** Copyright (C) 2016 The Qt Company Ltd.
+** Contact: http://www.qt.io/licensing/
+**
+** This file is part of the Qt Speech module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL3$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see http://www.qt.io/terms-conditions. For further
+** information use the contact form at http://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPLv3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or later as published by the Free
+** Software Foundation and appearing in the file LICENSE.GPL included in
+** the packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 2.0 requirements will be
+** met: http://www.gnu.org/licenses/gpl-2.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <ve_ttsapi.h>
+#include <string.h>
+
+int main()
+{
+ VE_HSPEECH vocalizerClass;
+ VE_INSTALL vocalizerInstall;
+ memset(&vocalizerInstall, 0, sizeof(VE_INSTALL));
+ ve_ttsInitialize(&vocalizerInstall, &vocalizerClass);
+ ve_ttsUnInitialize(vocalizerClass);
+ return 0;
+}
diff --git a/config.tests/vocalizer/vocalizer.pro b/config.tests/vocalizer/vocalizer.pro
new file mode 100644
index 0000000..b15ad7a
--- /dev/null
+++ b/config.tests/vocalizer/vocalizer.pro
@@ -0,0 +1,3 @@
+SOURCES = vocalizer.cpp
+
+LIBS += -lve
diff --git a/qtspeech.pro b/qtspeech.pro
index a5c17fc..24bbd50 100644
--- a/qtspeech.pro
+++ b/qtspeech.pro
@@ -1,4 +1,5 @@
lessThan(QT_MAJOR_VERSION, 5): error("The QtSpeech library only supports Qt 5.")
load(configure)
qtCompileTest(flite)
+qtCompileTest(vocalizer)
load(qt_parts)
diff --git a/src/plugins/tts/tts.pro b/src/plugins/tts/tts.pro
index e5b290d..90b79a6 100644
--- a/src/plugins/tts/tts.pro
+++ b/src/plugins/tts/tts.pro
@@ -17,3 +17,7 @@ osx: SUBDIRS += osx
config_flite {
SUBDIRS += flite
}
+
+config_vocalizer: exists(vocalizer) {
+ SUBDIRS += vocalizer
+}