summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2017-09-06 07:57:13 +0200
committerLiang Qi <liang.qi@qt.io>2017-09-06 17:46:16 +0000
commitd9f592f38ce7fb5a4fe5bd540b2ae9baf16760cc (patch)
tree83ac0d3d796cc52619eadd9901fee398b842406a
parent42590b0679e9662960db06565a763780f7bf14f0 (diff)
Remove the vocalizer config.tests
It is not in used in open source repo. Change-Id: I445f756f95a8717bf81d4ed5dda56cdd55b04f2b Reviewed-by: Frederik Gladhorn <frederik.gladhorn@qt.io>
-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, 0 insertions, 56 deletions
diff --git a/config.tests/vocalizer/vocalizer.cpp b/config.tests/vocalizer/vocalizer.cpp
deleted file mode 100644
index 5ef65cd..0000000
--- a/config.tests/vocalizer/vocalizer.cpp
+++ /dev/null
@@ -1,48 +0,0 @@
-/****************************************************************************
-**
-** 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
deleted file mode 100644
index b15ad7a..0000000
--- a/config.tests/vocalizer/vocalizer.pro
+++ /dev/null
@@ -1,3 +0,0 @@
-SOURCES = vocalizer.cpp
-
-LIBS += -lve
diff --git a/qtspeech.pro b/qtspeech.pro
index 58728f2..69d4e5b 100644
--- a/qtspeech.pro
+++ b/qtspeech.pro
@@ -2,5 +2,4 @@ lessThan(QT_MAJOR_VERSION, 5): error("The QtSpeech library only supports Qt 5.")
load(configure)
qtCompileTest(flite)
qtCompileTest(flite_alsa)
-qtCompileTest(vocalizer)
load(qt_parts)
diff --git a/src/plugins/tts/tts.pro b/src/plugins/tts/tts.pro
index a24af97..32085d5 100644
--- a/src/plugins/tts/tts.pro
+++ b/src/plugins/tts/tts.pro
@@ -18,7 +18,3 @@ android: SUBDIRS += android
config_flite | config_flite_alsa {
SUBDIRS += flite
}
-
-config_vocalizer: exists(vocalizer) {
- SUBDIRS += vocalizer
-}