summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTuomas Tuononen <tuomas.tuononen@code-q.fi>2016-01-26 14:11:51 +0200
committerFrederik Gladhorn <frederik.gladhorn@theqtcompany.com>2016-04-05 16:07:30 +0000
commita7f2726dd55105aeb368f7ef96d6f45ccdb662bd (patch)
tree053fec027f29e62cb581cb3aa239d6dfae5e9ace
parent1220b773abe33702143f1b94c038446f6ab24dbc (diff)
SpeechRecognition: Add project configuration for Vocon Hybrid plugin
Change-Id: I3d04162d3fe4dfe242a746250f7cd231b02d7027 Reviewed-by: Frederik Gladhorn <frederik.gladhorn@theqtcompany.com>
-rw-r--r--config.tests/voconhybrid/voconhybrid.cpp50
-rw-r--r--config.tests/voconhybrid/voconhybrid.pro3
-rw-r--r--qtspeech.pro2
-rwxr-xr-xsrc/plugins/asr/asr.pro4
4 files changed, 59 insertions, 0 deletions
diff --git a/config.tests/voconhybrid/voconhybrid.cpp b/config.tests/voconhybrid/voconhybrid.cpp
new file mode 100644
index 0000000..13bb368
--- /dev/null
+++ b/config.tests/voconhybrid/voconhybrid.cpp
@@ -0,0 +1,50 @@
+/****************************************************************************
+**
+** 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 <vocon3200_asr.h>
+#include <vocon_ext_heap.h>
+#include <vocon_ext_stream.h>
+
+int main(int argc,char **argv)
+{
+ LH_HEAP_INTERFACE voconHeapInterface;
+ void *voconHeap;
+ LH_COMPONENT voconBase;
+ ph_DlHeapCreate(0, &voconHeapInterface, &voconHeap);
+ lh_InitBase(&voconHeapInterface, voconHeap, 0, 0, &voconBase);
+ lh_ComponentTerminate(&voconBase);
+ ph_DlHeapClose(&voconHeap);
+}
diff --git a/config.tests/voconhybrid/voconhybrid.pro b/config.tests/voconhybrid/voconhybrid.pro
new file mode 100644
index 0000000..2c3d6e0
--- /dev/null
+++ b/config.tests/voconhybrid/voconhybrid.pro
@@ -0,0 +1,3 @@
+SOURCES = voconhybrid.cpp
+
+LIBS += -lvocon3200_asr -lvocon3200_base -lvocon3200_pron -lvocon3200_platform -lvocon_ext_stream -lvocon_ext_heap -lgenericdca
diff --git a/qtspeech.pro b/qtspeech.pro
index 7da79db..c330123 100644
--- a/qtspeech.pro
+++ b/qtspeech.pro
@@ -1,2 +1,4 @@
lessThan(QT_MAJOR_VERSION, 5): error("The QtSpeech library only supports Qt 5.")
+load(configure)
+qtCompileTest(voconhybrid)
load(qt_parts)
diff --git a/src/plugins/asr/asr.pro b/src/plugins/asr/asr.pro
index 7de9394..87a8003 100755
--- a/src/plugins/asr/asr.pro
+++ b/src/plugins/asr/asr.pro
@@ -5,3 +5,7 @@ exists( ../../3rdparty/pocketsphinx/src/libpocketsphinx/.libs ): exists ( ../../
} else {
message( "PocketSphinx and/or SphinxBase not built, skipping PocketSphinx plug-in compilation" )
}
+
+config_voconhybrid: exists(voconhybrid) {
+ SUBDIRS += voconhybrid
+}