From a75c3c174782f4c8e269d5d5854e780148a63b9c Mon Sep 17 00:00:00 2001 From: Tuomas Tuononen Date: Thu, 28 Jan 2016 17:28:24 +0200 Subject: Add project configuration for Vocalizer Expressive plugin Change-Id: Idfe7754bf22564ee518678598747234d57f638ce Reviewed-by: Frederik Gladhorn --- config.tests/vocalizer/vocalizer.cpp | 48 ++++++++++++++++++++++++++++++++++++ config.tests/vocalizer/vocalizer.pro | 3 +++ qtspeech.pro | 1 + src/plugins/tts/tts.pro | 4 +++ 4 files changed, 56 insertions(+) create mode 100644 config.tests/vocalizer/vocalizer.cpp create mode 100644 config.tests/vocalizer/vocalizer.pro 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 +#include + +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 +} -- cgit v1.2.3