├── .gitattributes ├── .gitignore ├── SpeechRecognizer ├── Makefile ├── Makefile.Debug ├── Makefile.Release ├── SpeechRecognizer.pro ├── SpeechRecognizer.pro.user ├── debug │ ├── main.obj │ ├── mainwindow.obj │ ├── moc_mainwindow.cpp │ ├── moc_mainwindow.obj │ ├── moc_sphinxengine.cpp │ ├── moc_sphinxengine.obj │ ├── qt_console_app.exe │ ├── qt_console_app.exe.embed.manifest │ ├── qt_console_app.exe_manifest.rc │ ├── qt_console_app.exe_manifest.res │ ├── qt_console_app.ilk │ ├── qt_console_app.pdb │ └── sphinxengine.obj ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── sphinxengine.cpp ├── sphinxengine.h └── ui_mainwindow.h ├── models └── sin-sl-v2 │ ├── sinhala.ci_cont │ ├── feat.params │ ├── mdef │ ├── means │ ├── mixture_weights │ ├── noisedict │ ├── transition_matrices │ └── variances │ ├── sinhala.dic │ └── sinhala.lm └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | 38 | # Directories potentially created on remote AFP share 39 | .AppleDB 40 | .AppleDesktop 41 | Network Trash Folder 42 | Temporary Items 43 | .apdisk 44 | -------------------------------------------------------------------------------- /SpeechRecognizer/Makefile: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | # Makefile for building: qt_console_app 3 | # Generated by qmake (3.0) (Qt 5.2.1) 4 | # Project: SpeechRecognizer.pro 5 | # Template: app 6 | # Command: C:\QtSDK5.2.1\5.2.1\msvc2012\bin\qmake.exe -spec win32-msvc2012 CONFIG+=debug CONFIG+=declarative_debug CONFIG+=qml_debug -o Makefile SpeechRecognizer.pro 7 | ############################################################################# 8 | 9 | MAKEFILE = Makefile 10 | 11 | first: debug 12 | install: debug-install 13 | uninstall: debug-uninstall 14 | QMAKE = C:\QtSDK5.2.1\5.2.1\msvc2012\bin\qmake.exe 15 | DEL_FILE = del 16 | CHK_DIR_EXISTS= if not exist 17 | MKDIR = mkdir 18 | COPY = copy /y 19 | COPY_FILE = $(COPY) 20 | COPY_DIR = xcopy /s /q /y /i 21 | INSTALL_FILE = $(COPY_FILE) 22 | INSTALL_PROGRAM = $(COPY_FILE) 23 | INSTALL_DIR = $(COPY_DIR) 24 | DEL_FILE = del 25 | SYMLINK = copy /y 26 | DEL_DIR = rmdir 27 | MOVE = move 28 | SUBTARGETS = \ 29 | debug \ 30 | release 31 | 32 | 33 | debug: FORCE 34 | @set MAKEFLAGS=$(MAKEFLAGS) 35 | $(MAKE) -f $(MAKEFILE).Debug 36 | debug-make_first: FORCE 37 | @set MAKEFLAGS=$(MAKEFLAGS) 38 | $(MAKE) -f $(MAKEFILE).Debug 39 | debug-all: FORCE 40 | @set MAKEFLAGS=$(MAKEFLAGS) 41 | $(MAKE) -f $(MAKEFILE).Debug all 42 | debug-clean: FORCE 43 | @set MAKEFLAGS=$(MAKEFLAGS) 44 | $(MAKE) -f $(MAKEFILE).Debug clean 45 | debug-distclean: FORCE 46 | @set MAKEFLAGS=$(MAKEFLAGS) 47 | $(MAKE) -f $(MAKEFILE).Debug distclean 48 | debug-install: FORCE 49 | @set MAKEFLAGS=$(MAKEFLAGS) 50 | $(MAKE) -f $(MAKEFILE).Debug install 51 | debug-uninstall: FORCE 52 | @set MAKEFLAGS=$(MAKEFLAGS) 53 | $(MAKE) -f $(MAKEFILE).Debug uninstall 54 | release: FORCE 55 | @set MAKEFLAGS=$(MAKEFLAGS) 56 | $(MAKE) -f $(MAKEFILE).Release 57 | release-make_first: FORCE 58 | @set MAKEFLAGS=$(MAKEFLAGS) 59 | $(MAKE) -f $(MAKEFILE).Release 60 | release-all: FORCE 61 | @set MAKEFLAGS=$(MAKEFLAGS) 62 | $(MAKE) -f $(MAKEFILE).Release all 63 | release-clean: FORCE 64 | @set MAKEFLAGS=$(MAKEFLAGS) 65 | $(MAKE) -f $(MAKEFILE).Release clean 66 | release-distclean: FORCE 67 | @set MAKEFLAGS=$(MAKEFLAGS) 68 | $(MAKE) -f $(MAKEFILE).Release distclean 69 | release-install: FORCE 70 | @set MAKEFLAGS=$(MAKEFLAGS) 71 | $(MAKE) -f $(MAKEFILE).Release install 72 | release-uninstall: FORCE 73 | @set MAKEFLAGS=$(MAKEFLAGS) 74 | $(MAKE) -f $(MAKEFILE).Release uninstall 75 | 76 | Makefile: SpeechRecognizer.pro C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\win32-msvc2012\qmake.conf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\spec_pre.prf \ 77 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\common\shell-win32.conf \ 78 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\qconfig.pri \ 79 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axbase.pri \ 80 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axbase_private.pri \ 81 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axcontainer.pri \ 82 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axcontainer_private.pri \ 83 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axserver.pri \ 84 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axserver_private.pri \ 85 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_bluetooth.pri \ 86 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_bluetooth_private.pri \ 87 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_bootstrap_private.pri \ 88 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_clucene_private.pri \ 89 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_concurrent.pri \ 90 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_concurrent_private.pri \ 91 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_core.pri \ 92 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_core_private.pri \ 93 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_declarative.pri \ 94 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_declarative_private.pri \ 95 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_designer.pri \ 96 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_designer_private.pri \ 97 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_designercomponents_private.pri \ 98 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_gui.pri \ 99 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_gui_private.pri \ 100 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_help.pri \ 101 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_help_private.pri \ 102 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_multimedia.pri \ 103 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_multimedia_private.pri \ 104 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_multimediawidgets.pri \ 105 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_multimediawidgets_private.pri \ 106 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_network.pri \ 107 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_network_private.pri \ 108 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_nfc.pri \ 109 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_nfc_private.pri \ 110 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_opengl.pri \ 111 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_opengl_private.pri \ 112 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_openglextensions.pri \ 113 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_openglextensions_private.pri \ 114 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_platformsupport_private.pri \ 115 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_positioning.pri \ 116 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_positioning_private.pri \ 117 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_printsupport.pri \ 118 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_printsupport_private.pri \ 119 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qml.pri \ 120 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qml_private.pri \ 121 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qmldevtools_private.pri \ 122 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qmltest.pri \ 123 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qmltest_private.pri \ 124 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qtmultimediaquicktools_private.pri \ 125 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_quick.pri \ 126 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_quick_private.pri \ 127 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_quickparticles_private.pri \ 128 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_script.pri \ 129 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_script_private.pri \ 130 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_scripttools.pri \ 131 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_scripttools_private.pri \ 132 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_sensors.pri \ 133 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_sensors_private.pri \ 134 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_serialport.pri \ 135 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_serialport_private.pri \ 136 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_sql.pri \ 137 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_sql_private.pri \ 138 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_svg.pri \ 139 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_svg_private.pri \ 140 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_testlib.pri \ 141 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_testlib_private.pri \ 142 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_uitools.pri \ 143 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_uitools_private.pri \ 144 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_webkit.pri \ 145 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_webkit_private.pri \ 146 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_webkitwidgets.pri \ 147 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_webkitwidgets_private.pri \ 148 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_widgets.pri \ 149 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_widgets_private.pri \ 150 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_winextras.pri \ 151 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_winextras_private.pri \ 152 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_xml.pri \ 153 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_xml_private.pri \ 154 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_xmlpatterns.pri \ 155 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_xmlpatterns_private.pri \ 156 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\qt_functions.prf \ 157 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\qt_config.prf \ 158 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\win32-msvc2012\qmake.conf \ 159 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\spec_post.prf \ 160 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\exclusive_builds.prf \ 161 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\default_pre.prf \ 162 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\win32\default_pre.prf \ 163 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\resolve_config.prf \ 164 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\exclusive_builds_post.prf \ 165 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\default_post.prf \ 166 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\win32\console.prf \ 167 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\qml_debug.prf \ 168 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\declarative_debug.prf \ 169 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\win32\rtti.prf \ 170 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\warn_on.prf \ 171 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\qt.prf \ 172 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\resources.prf \ 173 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\moc.prf \ 174 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\win32\opengl.prf \ 175 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\uic.prf \ 176 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\testcase_targets.prf \ 177 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\exceptions.prf \ 178 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\yacc.prf \ 179 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\lex.prf \ 180 | SpeechRecognizer.pro \ 181 | C:/QtSDK5.2.1/5.2.1/msvc2012/lib/Qt5Widgets.prl \ 182 | C:/QtSDK5.2.1/5.2.1/msvc2012/lib/Qt5Gui.prl \ 183 | C:/QtSDK5.2.1/5.2.1/msvc2012/lib/Qt5Core.prl \ 184 | C:/QtSDK5.2.1/5.2.1/msvc2012/lib/libEGLd.prl \ 185 | C:/QtSDK5.2.1/5.2.1/msvc2012/lib/libGLESv2d.prl 186 | $(QMAKE) -spec win32-msvc2012 CONFIG+=debug CONFIG+=declarative_debug CONFIG+=qml_debug -o Makefile SpeechRecognizer.pro 187 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\spec_pre.prf: 188 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\common\shell-win32.conf: 189 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\qconfig.pri: 190 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axbase.pri: 191 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axbase_private.pri: 192 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axcontainer.pri: 193 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axcontainer_private.pri: 194 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axserver.pri: 195 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axserver_private.pri: 196 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_bluetooth.pri: 197 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_bluetooth_private.pri: 198 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_bootstrap_private.pri: 199 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_clucene_private.pri: 200 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_concurrent.pri: 201 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_concurrent_private.pri: 202 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_core.pri: 203 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_core_private.pri: 204 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_declarative.pri: 205 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_declarative_private.pri: 206 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_designer.pri: 207 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_designer_private.pri: 208 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_designercomponents_private.pri: 209 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_gui.pri: 210 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_gui_private.pri: 211 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_help.pri: 212 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_help_private.pri: 213 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_multimedia.pri: 214 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_multimedia_private.pri: 215 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_multimediawidgets.pri: 216 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_multimediawidgets_private.pri: 217 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_network.pri: 218 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_network_private.pri: 219 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_nfc.pri: 220 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_nfc_private.pri: 221 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_opengl.pri: 222 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_opengl_private.pri: 223 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_openglextensions.pri: 224 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_openglextensions_private.pri: 225 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_platformsupport_private.pri: 226 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_positioning.pri: 227 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_positioning_private.pri: 228 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_printsupport.pri: 229 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_printsupport_private.pri: 230 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qml.pri: 231 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qml_private.pri: 232 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qmldevtools_private.pri: 233 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qmltest.pri: 234 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qmltest_private.pri: 235 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qtmultimediaquicktools_private.pri: 236 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_quick.pri: 237 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_quick_private.pri: 238 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_quickparticles_private.pri: 239 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_script.pri: 240 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_script_private.pri: 241 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_scripttools.pri: 242 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_scripttools_private.pri: 243 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_sensors.pri: 244 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_sensors_private.pri: 245 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_serialport.pri: 246 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_serialport_private.pri: 247 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_sql.pri: 248 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_sql_private.pri: 249 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_svg.pri: 250 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_svg_private.pri: 251 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_testlib.pri: 252 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_testlib_private.pri: 253 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_uitools.pri: 254 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_uitools_private.pri: 255 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_webkit.pri: 256 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_webkit_private.pri: 257 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_webkitwidgets.pri: 258 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_webkitwidgets_private.pri: 259 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_widgets.pri: 260 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_widgets_private.pri: 261 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_winextras.pri: 262 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_winextras_private.pri: 263 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_xml.pri: 264 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_xml_private.pri: 265 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_xmlpatterns.pri: 266 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_xmlpatterns_private.pri: 267 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\qt_functions.prf: 268 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\qt_config.prf: 269 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\win32-msvc2012\qmake.conf: 270 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\spec_post.prf: 271 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\exclusive_builds.prf: 272 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\default_pre.prf: 273 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\win32\default_pre.prf: 274 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\resolve_config.prf: 275 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\exclusive_builds_post.prf: 276 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\default_post.prf: 277 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\win32\console.prf: 278 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\qml_debug.prf: 279 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\declarative_debug.prf: 280 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\win32\rtti.prf: 281 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\warn_on.prf: 282 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\qt.prf: 283 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\resources.prf: 284 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\moc.prf: 285 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\win32\opengl.prf: 286 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\uic.prf: 287 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\testcase_targets.prf: 288 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\exceptions.prf: 289 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\yacc.prf: 290 | C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\lex.prf: 291 | SpeechRecognizer.pro: 292 | C:/QtSDK5.2.1/5.2.1/msvc2012/lib/Qt5Widgets.prl: 293 | C:/QtSDK5.2.1/5.2.1/msvc2012/lib/Qt5Gui.prl: 294 | C:/QtSDK5.2.1/5.2.1/msvc2012/lib/Qt5Core.prl: 295 | C:/QtSDK5.2.1/5.2.1/msvc2012/lib/libEGLd.prl: 296 | C:/QtSDK5.2.1/5.2.1/msvc2012/lib/libGLESv2d.prl: 297 | qmake: FORCE 298 | @$(QMAKE) -spec win32-msvc2012 CONFIG+=debug CONFIG+=declarative_debug CONFIG+=qml_debug -o Makefile SpeechRecognizer.pro 299 | 300 | qmake_all: FORCE 301 | 302 | make_first: debug-make_first release-make_first FORCE 303 | all: debug-all release-all FORCE 304 | clean: debug-clean release-clean FORCE 305 | -$(DEL_FILE) qt_console_app.exp 306 | -$(DEL_FILE) qt_console_app.ilk 307 | -$(DEL_FILE) qt_console_app.idb 308 | distclean: debug-distclean release-distclean FORCE 309 | -$(DEL_FILE) Makefile 310 | -$(DEL_FILE) qt_console_app.pdb 311 | 312 | debug-mocclean: 313 | @set MAKEFLAGS=$(MAKEFLAGS) 314 | $(MAKE) -f $(MAKEFILE).Debug mocclean 315 | release-mocclean: 316 | @set MAKEFLAGS=$(MAKEFLAGS) 317 | $(MAKE) -f $(MAKEFILE).Release mocclean 318 | mocclean: debug-mocclean release-mocclean 319 | 320 | debug-mocables: 321 | @set MAKEFLAGS=$(MAKEFLAGS) 322 | $(MAKE) -f $(MAKEFILE).Debug mocables 323 | release-mocables: 324 | @set MAKEFLAGS=$(MAKEFLAGS) 325 | $(MAKE) -f $(MAKEFILE).Release mocables 326 | mocables: debug-mocables release-mocables 327 | 328 | check: first 329 | FORCE: 330 | 331 | $(MAKEFILE).Debug: Makefile 332 | $(MAKEFILE).Release: Makefile 333 | -------------------------------------------------------------------------------- /SpeechRecognizer/Makefile.Release: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | # Makefile for building: qt_console_app 3 | # Generated by qmake (3.0) (Qt 5.2.1) 4 | # Project: SpeechRecognizer.pro 5 | # Template: app 6 | ############################################################################# 7 | 8 | MAKEFILE = Makefile.Release 9 | 10 | ####### Compiler, tools and options 11 | 12 | CC = cl 13 | CXX = cl 14 | DEFINES = -DUNICODE -DWIN32 -DQT_QML_DEBUG -DQT_DECLARATIVE_DEBUG -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_OPENGL_ES_2 -DQT_OPENGL_ES_2_ANGLE -DNDEBUG 15 | CFLAGS = -nologo -Zm200 -Zc:wchar_t -O2 -MD -W3 $(DEFINES) 16 | CXXFLAGS = -nologo -Zm200 -Zc:wchar_t -O2 -MD -GR -W3 -w34100 -w34189 -EHsc $(DEFINES) 17 | INCPATH = -I"..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include" -I"..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include" -I"..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\win32" -I"C:\QtSDK5.2.1\5.2.1\msvc2012\include" -I"C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets" -I"C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui" -I"C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtANGLE" -I"C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore" -I"release" -I"." -I"C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\win32-msvc2012" 18 | LINKER = link 19 | LFLAGS = /NOLOGO /DYNAMICBASE /NXCOMPAT /INCREMENTAL:NO /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" 20 | LIBS = "E:\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\lib\Debug\*.lib" "E:\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\lib\Debug\*.lib" /LIBPATH:C:\QtSDK5.2.1\5.2.1\msvc2012\lib C:\QtSDK5.2.1\5.2.1\msvc2012\lib\Qt5Widgets.lib C:\QtSDK5.2.1\5.2.1\msvc2012\lib\Qt5Gui.lib C:\QtSDK5.2.1\5.2.1\msvc2012\lib\Qt5Core.lib libEGL.lib libGLESv2.lib gdi32.lib user32.lib 21 | QMAKE = C:\QtSDK5.2.1\5.2.1\msvc2012\bin\qmake.exe 22 | IDC = idc 23 | IDL = midl 24 | ZIP = zip -r -9 25 | DEF_FILE = 26 | RES_FILE = 27 | COPY = copy /y 28 | SED = $(QMAKE) -install sed 29 | COPY_FILE = $(COPY) 30 | COPY_DIR = xcopy /s /q /y /i 31 | DEL_FILE = del 32 | DEL_DIR = rmdir 33 | MOVE = move 34 | CHK_DIR_EXISTS= if not exist 35 | MKDIR = mkdir 36 | INSTALL_FILE = $(COPY_FILE) 37 | INSTALL_PROGRAM = $(COPY_FILE) 38 | INSTALL_DIR = $(COPY_DIR) 39 | 40 | ####### Output directory 41 | 42 | OBJECTS_DIR = release 43 | 44 | ####### Files 45 | 46 | SOURCES = main.cpp \ 47 | mainwindow.cpp \ 48 | sphinxengine.cpp \ 49 | mainwindow.cpp \ 50 | sphinxengine.cpp release\moc_mainwindow.cpp \ 51 | release\moc_sphinxengine.cpp 52 | OBJECTS = release\main.obj \ 53 | release\mainwindow.obj \ 54 | release\sphinxengine.obj \ 55 | release\mainwindow.obj \ 56 | release\sphinxengine.obj \ 57 | release\moc_mainwindow.obj \ 58 | release\moc_sphinxengine.obj 59 | 60 | DIST = 61 | QMAKE_TARGET = qt_console_app 62 | DESTDIR = release\ #avoid trailing-slash linebreak 63 | TARGET = qt_console_app.exe 64 | DESTDIR_TARGET = release\qt_console_app.exe 65 | 66 | ####### Implicit rules 67 | 68 | .SUFFIXES: .c .cpp .cc .cxx 69 | 70 | {.}.cpp{release\}.obj:: 71 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<< 72 | $< 73 | << 74 | 75 | {.}.cc{release\}.obj:: 76 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<< 77 | $< 78 | << 79 | 80 | {.}.cxx{release\}.obj:: 81 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<< 82 | $< 83 | << 84 | 85 | {.}.c{release\}.obj:: 86 | $(CC) -c $(CFLAGS) $(INCPATH) -Forelease\ @<< 87 | $< 88 | << 89 | 90 | {release}.cpp{release\}.obj:: 91 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<< 92 | $< 93 | << 94 | 95 | {release}.cc{release\}.obj:: 96 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<< 97 | $< 98 | << 99 | 100 | {release}.cxx{release\}.obj:: 101 | $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<< 102 | $< 103 | << 104 | 105 | {release}.c{release\}.obj:: 106 | $(CC) -c $(CFLAGS) $(INCPATH) -Forelease\ @<< 107 | $< 108 | << 109 | 110 | ####### Build rules 111 | 112 | first: all 113 | all: Makefile.Release $(DESTDIR_TARGET) 114 | 115 | $(DESTDIR_TARGET): ui_mainwindow.h $(OBJECTS) 116 | $(LINKER) $(LFLAGS) /MANIFEST /MANIFESTFILE:release\qt_console_app.exe.embed.manifest /OUT:$(DESTDIR_TARGET) @<< 117 | $(OBJECTS) $(LIBS) 118 | << 119 | mt.exe /nologo /manifest release\qt_console_app.exe.embed.manifest /outputresource:$(DESTDIR_TARGET);1 120 | 121 | qmake: FORCE 122 | @$(QMAKE) -spec win32-msvc2012 CONFIG+=debug CONFIG+=declarative_debug CONFIG+=qml_debug -o Makefile.Release SpeechRecognizer.pro 123 | 124 | qmake_all: FORCE 125 | 126 | dist: 127 | $(ZIP) qt_console_app.zip $(SOURCES) $(DIST) SpeechRecognizer.pro C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\spec_pre.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\common\shell-win32.conf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\qconfig.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axbase.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axbase_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axcontainer.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axcontainer_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axserver.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_axserver_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_bluetooth.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_bluetooth_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_bootstrap_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_clucene_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_concurrent.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_concurrent_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_core.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_core_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_declarative.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_declarative_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_designer.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_designer_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_designercomponents_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_gui.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_gui_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_help.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_help_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_multimedia.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_multimedia_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_multimediawidgets.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_multimediawidgets_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_network.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_network_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_nfc.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_nfc_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_opengl.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_opengl_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_openglextensions.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_openglextensions_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_platformsupport_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_positioning.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_positioning_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_printsupport.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_printsupport_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qml.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qml_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qmldevtools_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qmltest.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qmltest_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_qtmultimediaquicktools_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_quick.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_quick_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_quickparticles_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_script.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_script_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_scripttools.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_scripttools_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_sensors.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_sensors_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_serialport.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_serialport_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_sql.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_sql_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_svg.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_svg_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_testlib.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_testlib_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_uitools.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_uitools_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_webkit.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_webkit_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_webkitwidgets.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_webkitwidgets_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_widgets.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_widgets_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_winextras.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_winextras_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_xml.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_xml_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_xmlpatterns.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\modules\qt_lib_xmlpatterns_private.pri C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\qt_functions.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\qt_config.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\win32-msvc2012\qmake.conf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\spec_post.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\exclusive_builds.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\default_pre.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\win32\default_pre.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\resolve_config.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\exclusive_builds_post.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\default_post.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\build_pass.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\win32\console.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\qml_debug.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\declarative_debug.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\win32\rtti.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\warn_on.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\qt.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\resources.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\moc.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\win32\opengl.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\uic.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\testcase_targets.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\exceptions.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\yacc.prf C:\QtSDK5.2.1\5.2.1\msvc2012\mkspecs\features\lex.prf SpeechRecognizer.pro C:/QtSDK5.2.1/5.2.1/msvc2012/lib/Qt5Widgets.prl C:/QtSDK5.2.1/5.2.1/msvc2012/lib/Qt5Gui.prl C:/QtSDK5.2.1/5.2.1/msvc2012/lib/Qt5Core.prl C:/QtSDK5.2.1/5.2.1/msvc2012/lib/libEGL.prl C:/QtSDK5.2.1/5.2.1/msvc2012/lib/libGLESv2.prl RESOURCES HEADERS SOURCES OBJECTIVE_SOURCES FORMS YACCSOURCES YACCSOURCES LEXSOURCES 128 | 129 | clean: compiler_clean 130 | -$(DEL_FILE) release\main.obj release\mainwindow.obj release\sphinxengine.obj release\mainwindow.obj release\sphinxengine.obj release\moc_mainwindow.obj release\moc_sphinxengine.obj 131 | -$(DEL_FILE) release\qt_console_app.exp release\qt_console_app.exe.embed.manifest 132 | 133 | distclean: clean 134 | -$(DEL_FILE) $(DESTDIR_TARGET) 135 | -$(DEL_FILE) Makefile.Release 136 | 137 | mocclean: compiler_moc_header_clean compiler_moc_source_clean 138 | 139 | mocables: compiler_moc_header_make_all compiler_moc_source_make_all 140 | 141 | check: first 142 | 143 | compiler_rcc_make_all: 144 | compiler_rcc_clean: 145 | compiler_moc_header_make_all: release\moc_mainwindow.cpp release\moc_sphinxengine.cpp release\moc_mainwindow.cpp release\moc_sphinxengine.cpp 146 | compiler_moc_header_clean: 147 | -$(DEL_FILE) release\moc_mainwindow.cpp release\moc_sphinxengine.cpp release\moc_mainwindow.cpp release\moc_sphinxengine.cpp 148 | release\moc_mainwindow.cpp: C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\QMainWindow \ 149 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qmainwindow.h \ 150 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qwidget.h \ 151 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qwindowdefs.h \ 152 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobal.h \ 153 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qconfig.h \ 154 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfeatures.h \ 155 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsystemdetection.h \ 156 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qprocessordetection.h \ 157 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcompilerdetection.h \ 158 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobalstatic.h \ 159 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic.h \ 160 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbasicatomic.h \ 161 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bootstrap.h \ 162 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qgenericatomic.h \ 163 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_msvc.h \ 164 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_integrity.h \ 165 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qoldbasicatomic.h \ 166 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_vxworks.h \ 167 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_power.h \ 168 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_alpha.h \ 169 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv7.h \ 170 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv6.h \ 171 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv5.h \ 172 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bfin.h \ 173 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_ia64.h \ 174 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_mips.h \ 175 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_s390.h \ 176 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sh4a.h \ 177 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sparc.h \ 178 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_x86.h \ 179 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_cxx11.h \ 180 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_gcc.h \ 181 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_unix.h \ 182 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmutex.h \ 183 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlogging.h \ 184 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qflags.h \ 185 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypeinfo.h \ 186 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypetraits.h \ 187 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsysinfo.h \ 188 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs.h \ 189 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qnamespace.h \ 190 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs_impl.h \ 191 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qwindowdefs_win.h \ 192 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject.h \ 193 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstring.h \ 194 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qchar.h \ 195 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbytearray.h \ 196 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qrefcount.h \ 197 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qarraydata.h \ 198 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringbuilder.h \ 199 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlist.h \ 200 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qalgorithms.h \ 201 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qiterator.h \ 202 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcoreevent.h \ 203 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qscopedpointer.h \ 204 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmetatype.h \ 205 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvarlengtharray.h \ 206 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcontainerfwd.h \ 207 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qisenum.h \ 208 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject_impl.h \ 209 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmargins.h \ 210 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qrect.h \ 211 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsize.h \ 212 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qpoint.h \ 213 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpaintdevice.h \ 214 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpalette.h \ 215 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qcolor.h \ 216 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qrgb.h \ 217 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringlist.h \ 218 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qdatastream.h \ 219 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qiodevice.h \ 220 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qpair.h \ 221 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qregexp.h \ 222 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringmatcher.h \ 223 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qbrush.h \ 224 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvector.h \ 225 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qmatrix.h \ 226 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpolygon.h \ 227 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qregion.h \ 228 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qline.h \ 229 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qtransform.h \ 230 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpainterpath.h \ 231 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qimage.h \ 232 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpixmap.h \ 233 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsharedpointer.h \ 234 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qshareddata.h \ 235 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsharedpointer_impl.h \ 236 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qhash.h \ 237 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qfont.h \ 238 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qfontmetrics.h \ 239 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qfontinfo.h \ 240 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qsizepolicy.h \ 241 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qcursor.h \ 242 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qkeysequence.h \ 243 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qevent.h \ 244 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvariant.h \ 245 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmap.h \ 246 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qdebug.h \ 247 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtextstream.h \ 248 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlocale.h \ 249 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qset.h \ 250 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcontiguouscache.h \ 251 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qurl.h \ 252 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qurlquery.h \ 253 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfile.h \ 254 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfiledevice.h \ 255 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qvector2d.h \ 256 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qtouchdevice.h \ 257 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qtabwidget.h \ 258 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qicon.h \ 259 | sphinxengine.h \ 260 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QObject \ 261 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx.h" \ 262 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmd_ln.h" \ 263 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\sphinxbase_export.h" \ 264 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\prim_type.h" \ 265 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\win32\sphinx_config.h" \ 266 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\logmath.h" \ 267 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fe.h" \ 268 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fixpoint.h" \ 269 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\feat.h" \ 270 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmn.h" \ 271 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\agc.h" \ 272 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx_export.h" \ 273 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\cmdln_macro.h" \ 274 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_lattice.h" \ 275 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ngram_model.h" \ 276 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\mmio.h" \ 277 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_mllr.h" \ 278 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_search.h" \ 279 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fsg_model.h" \ 280 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\glist.h" \ 281 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\bitvec.h" \ 282 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ckd_alloc.h" \ 283 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\hash_table.h" \ 284 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\listelem_alloc.h" \ 285 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\err.h" \ 286 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ad.h" \ 287 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QThread \ 288 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qthread.h \ 289 | mainwindow.h 290 | C:\QtSDK5.2.1\5.2.1\msvc2012\bin\moc.exe $(DEFINES) -D_MSC_VER=1700 -D_WIN32 $(INCPATH) mainwindow.h -o release\moc_mainwindow.cpp 291 | 292 | release\moc_sphinxengine.cpp: C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QObject \ 293 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject.h \ 294 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs.h \ 295 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qnamespace.h \ 296 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobal.h \ 297 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qconfig.h \ 298 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfeatures.h \ 299 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsystemdetection.h \ 300 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qprocessordetection.h \ 301 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcompilerdetection.h \ 302 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobalstatic.h \ 303 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic.h \ 304 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbasicatomic.h \ 305 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bootstrap.h \ 306 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qgenericatomic.h \ 307 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_msvc.h \ 308 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_integrity.h \ 309 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qoldbasicatomic.h \ 310 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_vxworks.h \ 311 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_power.h \ 312 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_alpha.h \ 313 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv7.h \ 314 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv6.h \ 315 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv5.h \ 316 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bfin.h \ 317 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_ia64.h \ 318 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_mips.h \ 319 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_s390.h \ 320 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sh4a.h \ 321 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sparc.h \ 322 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_x86.h \ 323 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_cxx11.h \ 324 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_gcc.h \ 325 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_unix.h \ 326 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmutex.h \ 327 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlogging.h \ 328 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qflags.h \ 329 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypeinfo.h \ 330 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypetraits.h \ 331 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsysinfo.h \ 332 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs_impl.h \ 333 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstring.h \ 334 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qchar.h \ 335 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbytearray.h \ 336 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qrefcount.h \ 337 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qarraydata.h \ 338 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringbuilder.h \ 339 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlist.h \ 340 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qalgorithms.h \ 341 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qiterator.h \ 342 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcoreevent.h \ 343 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qscopedpointer.h \ 344 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmetatype.h \ 345 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvarlengtharray.h \ 346 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcontainerfwd.h \ 347 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qisenum.h \ 348 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject_impl.h \ 349 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx.h" \ 350 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmd_ln.h" \ 351 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\sphinxbase_export.h" \ 352 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\prim_type.h" \ 353 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\win32\sphinx_config.h" \ 354 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\logmath.h" \ 355 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fe.h" \ 356 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fixpoint.h" \ 357 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\feat.h" \ 358 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmn.h" \ 359 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\agc.h" \ 360 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx_export.h" \ 361 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\cmdln_macro.h" \ 362 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_lattice.h" \ 363 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ngram_model.h" \ 364 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\mmio.h" \ 365 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_mllr.h" \ 366 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_search.h" \ 367 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fsg_model.h" \ 368 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\glist.h" \ 369 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\bitvec.h" \ 370 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ckd_alloc.h" \ 371 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\hash_table.h" \ 372 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\listelem_alloc.h" \ 373 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\err.h" \ 374 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ad.h" \ 375 | sphinxengine.h 376 | C:\QtSDK5.2.1\5.2.1\msvc2012\bin\moc.exe $(DEFINES) -D_MSC_VER=1700 -D_WIN32 $(INCPATH) sphinxengine.h -o release\moc_sphinxengine.cpp 377 | 378 | release\moc_mainwindow.cpp: C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\QMainWindow \ 379 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qmainwindow.h \ 380 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qwidget.h \ 381 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qwindowdefs.h \ 382 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobal.h \ 383 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qconfig.h \ 384 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfeatures.h \ 385 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsystemdetection.h \ 386 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qprocessordetection.h \ 387 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcompilerdetection.h \ 388 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobalstatic.h \ 389 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic.h \ 390 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbasicatomic.h \ 391 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bootstrap.h \ 392 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qgenericatomic.h \ 393 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_msvc.h \ 394 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_integrity.h \ 395 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qoldbasicatomic.h \ 396 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_vxworks.h \ 397 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_power.h \ 398 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_alpha.h \ 399 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv7.h \ 400 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv6.h \ 401 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv5.h \ 402 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bfin.h \ 403 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_ia64.h \ 404 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_mips.h \ 405 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_s390.h \ 406 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sh4a.h \ 407 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sparc.h \ 408 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_x86.h \ 409 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_cxx11.h \ 410 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_gcc.h \ 411 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_unix.h \ 412 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmutex.h \ 413 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlogging.h \ 414 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qflags.h \ 415 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypeinfo.h \ 416 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypetraits.h \ 417 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsysinfo.h \ 418 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs.h \ 419 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qnamespace.h \ 420 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs_impl.h \ 421 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qwindowdefs_win.h \ 422 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject.h \ 423 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstring.h \ 424 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qchar.h \ 425 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbytearray.h \ 426 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qrefcount.h \ 427 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qarraydata.h \ 428 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringbuilder.h \ 429 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlist.h \ 430 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qalgorithms.h \ 431 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qiterator.h \ 432 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcoreevent.h \ 433 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qscopedpointer.h \ 434 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmetatype.h \ 435 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvarlengtharray.h \ 436 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcontainerfwd.h \ 437 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qisenum.h \ 438 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject_impl.h \ 439 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmargins.h \ 440 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qrect.h \ 441 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsize.h \ 442 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qpoint.h \ 443 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpaintdevice.h \ 444 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpalette.h \ 445 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qcolor.h \ 446 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qrgb.h \ 447 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringlist.h \ 448 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qdatastream.h \ 449 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qiodevice.h \ 450 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qpair.h \ 451 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qregexp.h \ 452 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringmatcher.h \ 453 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qbrush.h \ 454 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvector.h \ 455 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qmatrix.h \ 456 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpolygon.h \ 457 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qregion.h \ 458 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qline.h \ 459 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qtransform.h \ 460 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpainterpath.h \ 461 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qimage.h \ 462 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpixmap.h \ 463 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsharedpointer.h \ 464 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qshareddata.h \ 465 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsharedpointer_impl.h \ 466 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qhash.h \ 467 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qfont.h \ 468 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qfontmetrics.h \ 469 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qfontinfo.h \ 470 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qsizepolicy.h \ 471 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qcursor.h \ 472 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qkeysequence.h \ 473 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qevent.h \ 474 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvariant.h \ 475 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmap.h \ 476 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qdebug.h \ 477 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtextstream.h \ 478 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlocale.h \ 479 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qset.h \ 480 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcontiguouscache.h \ 481 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qurl.h \ 482 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qurlquery.h \ 483 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfile.h \ 484 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfiledevice.h \ 485 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qvector2d.h \ 486 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qtouchdevice.h \ 487 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qtabwidget.h \ 488 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qicon.h \ 489 | sphinxengine.h \ 490 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QObject \ 491 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx.h" \ 492 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmd_ln.h" \ 493 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\sphinxbase_export.h" \ 494 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\prim_type.h" \ 495 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\win32\sphinx_config.h" \ 496 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\logmath.h" \ 497 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fe.h" \ 498 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fixpoint.h" \ 499 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\feat.h" \ 500 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmn.h" \ 501 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\agc.h" \ 502 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx_export.h" \ 503 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\cmdln_macro.h" \ 504 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_lattice.h" \ 505 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ngram_model.h" \ 506 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\mmio.h" \ 507 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_mllr.h" \ 508 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_search.h" \ 509 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fsg_model.h" \ 510 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\glist.h" \ 511 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\bitvec.h" \ 512 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ckd_alloc.h" \ 513 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\hash_table.h" \ 514 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\listelem_alloc.h" \ 515 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\err.h" \ 516 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ad.h" \ 517 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QThread \ 518 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qthread.h \ 519 | mainwindow.h 520 | C:\QtSDK5.2.1\5.2.1\msvc2012\bin\moc.exe $(DEFINES) -D_MSC_VER=1700 -D_WIN32 $(INCPATH) mainwindow.h -o release\moc_mainwindow.cpp 521 | 522 | release\moc_sphinxengine.cpp: C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QObject \ 523 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject.h \ 524 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs.h \ 525 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qnamespace.h \ 526 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobal.h \ 527 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qconfig.h \ 528 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfeatures.h \ 529 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsystemdetection.h \ 530 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qprocessordetection.h \ 531 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcompilerdetection.h \ 532 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobalstatic.h \ 533 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic.h \ 534 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbasicatomic.h \ 535 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bootstrap.h \ 536 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qgenericatomic.h \ 537 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_msvc.h \ 538 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_integrity.h \ 539 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qoldbasicatomic.h \ 540 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_vxworks.h \ 541 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_power.h \ 542 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_alpha.h \ 543 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv7.h \ 544 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv6.h \ 545 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv5.h \ 546 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bfin.h \ 547 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_ia64.h \ 548 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_mips.h \ 549 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_s390.h \ 550 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sh4a.h \ 551 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sparc.h \ 552 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_x86.h \ 553 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_cxx11.h \ 554 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_gcc.h \ 555 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_unix.h \ 556 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmutex.h \ 557 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlogging.h \ 558 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qflags.h \ 559 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypeinfo.h \ 560 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypetraits.h \ 561 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsysinfo.h \ 562 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs_impl.h \ 563 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstring.h \ 564 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qchar.h \ 565 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbytearray.h \ 566 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qrefcount.h \ 567 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qarraydata.h \ 568 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringbuilder.h \ 569 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlist.h \ 570 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qalgorithms.h \ 571 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qiterator.h \ 572 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcoreevent.h \ 573 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qscopedpointer.h \ 574 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmetatype.h \ 575 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvarlengtharray.h \ 576 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcontainerfwd.h \ 577 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qisenum.h \ 578 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject_impl.h \ 579 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx.h" \ 580 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmd_ln.h" \ 581 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\sphinxbase_export.h" \ 582 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\prim_type.h" \ 583 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\win32\sphinx_config.h" \ 584 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\logmath.h" \ 585 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fe.h" \ 586 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fixpoint.h" \ 587 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\feat.h" \ 588 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmn.h" \ 589 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\agc.h" \ 590 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx_export.h" \ 591 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\cmdln_macro.h" \ 592 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_lattice.h" \ 593 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ngram_model.h" \ 594 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\mmio.h" \ 595 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_mllr.h" \ 596 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_search.h" \ 597 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fsg_model.h" \ 598 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\glist.h" \ 599 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\bitvec.h" \ 600 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ckd_alloc.h" \ 601 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\hash_table.h" \ 602 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\listelem_alloc.h" \ 603 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\err.h" \ 604 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ad.h" \ 605 | sphinxengine.h 606 | C:\QtSDK5.2.1\5.2.1\msvc2012\bin\moc.exe $(DEFINES) -D_MSC_VER=1700 -D_WIN32 $(INCPATH) sphinxengine.h -o release\moc_sphinxengine.cpp 607 | 608 | compiler_moc_source_make_all: 609 | compiler_moc_source_clean: 610 | compiler_uic_make_all: ui_mainwindow.h 611 | compiler_uic_clean: 612 | -$(DEL_FILE) ui_mainwindow.h 613 | ui_mainwindow.h: mainwindow.ui 614 | C:\QtSDK5.2.1\5.2.1\msvc2012\bin\uic.exe mainwindow.ui -o ui_mainwindow.h 615 | 616 | compiler_yacc_decl_make_all: 617 | compiler_yacc_decl_clean: 618 | compiler_yacc_impl_make_all: 619 | compiler_yacc_impl_clean: 620 | compiler_lex_make_all: 621 | compiler_lex_clean: 622 | compiler_clean: compiler_moc_header_clean compiler_uic_clean 623 | 624 | 625 | 626 | ####### Compile 627 | 628 | release\main.obj: main.cpp mainwindow.h \ 629 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\QMainWindow \ 630 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qmainwindow.h \ 631 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qwidget.h \ 632 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qwindowdefs.h \ 633 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobal.h \ 634 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qconfig.h \ 635 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfeatures.h \ 636 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsystemdetection.h \ 637 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qprocessordetection.h \ 638 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcompilerdetection.h \ 639 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobalstatic.h \ 640 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic.h \ 641 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbasicatomic.h \ 642 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bootstrap.h \ 643 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qgenericatomic.h \ 644 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_msvc.h \ 645 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_integrity.h \ 646 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qoldbasicatomic.h \ 647 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_vxworks.h \ 648 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_power.h \ 649 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_alpha.h \ 650 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv7.h \ 651 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv6.h \ 652 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv5.h \ 653 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bfin.h \ 654 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_ia64.h \ 655 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_mips.h \ 656 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_s390.h \ 657 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sh4a.h \ 658 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sparc.h \ 659 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_x86.h \ 660 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_cxx11.h \ 661 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_gcc.h \ 662 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_unix.h \ 663 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmutex.h \ 664 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlogging.h \ 665 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qflags.h \ 666 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypeinfo.h \ 667 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypetraits.h \ 668 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsysinfo.h \ 669 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs.h \ 670 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qnamespace.h \ 671 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs_impl.h \ 672 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qwindowdefs_win.h \ 673 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject.h \ 674 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstring.h \ 675 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qchar.h \ 676 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbytearray.h \ 677 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qrefcount.h \ 678 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qarraydata.h \ 679 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringbuilder.h \ 680 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlist.h \ 681 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qalgorithms.h \ 682 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qiterator.h \ 683 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcoreevent.h \ 684 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qscopedpointer.h \ 685 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmetatype.h \ 686 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvarlengtharray.h \ 687 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcontainerfwd.h \ 688 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qisenum.h \ 689 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject_impl.h \ 690 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmargins.h \ 691 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qrect.h \ 692 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsize.h \ 693 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qpoint.h \ 694 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpaintdevice.h \ 695 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpalette.h \ 696 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qcolor.h \ 697 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qrgb.h \ 698 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringlist.h \ 699 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qdatastream.h \ 700 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qiodevice.h \ 701 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qpair.h \ 702 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qregexp.h \ 703 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringmatcher.h \ 704 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qbrush.h \ 705 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvector.h \ 706 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qmatrix.h \ 707 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpolygon.h \ 708 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qregion.h \ 709 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qline.h \ 710 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qtransform.h \ 711 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpainterpath.h \ 712 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qimage.h \ 713 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpixmap.h \ 714 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsharedpointer.h \ 715 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qshareddata.h \ 716 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsharedpointer_impl.h \ 717 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qhash.h \ 718 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qfont.h \ 719 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qfontmetrics.h \ 720 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qfontinfo.h \ 721 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qsizepolicy.h \ 722 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qcursor.h \ 723 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qkeysequence.h \ 724 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qevent.h \ 725 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvariant.h \ 726 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmap.h \ 727 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qdebug.h \ 728 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtextstream.h \ 729 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlocale.h \ 730 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qset.h \ 731 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcontiguouscache.h \ 732 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qurl.h \ 733 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qurlquery.h \ 734 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfile.h \ 735 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfiledevice.h \ 736 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qvector2d.h \ 737 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qtouchdevice.h \ 738 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qtabwidget.h \ 739 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qicon.h \ 740 | sphinxengine.h \ 741 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QObject \ 742 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx.h" \ 743 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmd_ln.h" \ 744 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\sphinxbase_export.h" \ 745 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\prim_type.h" \ 746 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\win32\sphinx_config.h" \ 747 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\logmath.h" \ 748 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fe.h" \ 749 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fixpoint.h" \ 750 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\feat.h" \ 751 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmn.h" \ 752 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\agc.h" \ 753 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx_export.h" \ 754 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\cmdln_macro.h" \ 755 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_lattice.h" \ 756 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ngram_model.h" \ 757 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\mmio.h" \ 758 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_mllr.h" \ 759 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_search.h" \ 760 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fsg_model.h" \ 761 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\glist.h" \ 762 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\bitvec.h" \ 763 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ckd_alloc.h" \ 764 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\hash_table.h" \ 765 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\listelem_alloc.h" \ 766 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\err.h" \ 767 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ad.h" \ 768 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QThread \ 769 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qthread.h \ 770 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\QApplication \ 771 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qapplication.h \ 772 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcoreapplication.h \ 773 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qeventloop.h \ 774 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qdesktopwidget.h \ 775 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qguiapplication.h \ 776 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qinputmethod.h \ 777 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QThreadPool \ 778 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qthreadpool.h \ 779 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qrunnable.h 780 | 781 | release\mainwindow.obj: mainwindow.cpp mainwindow.h \ 782 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\QMainWindow \ 783 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qmainwindow.h \ 784 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qwidget.h \ 785 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qwindowdefs.h \ 786 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobal.h \ 787 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qconfig.h \ 788 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfeatures.h \ 789 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsystemdetection.h \ 790 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qprocessordetection.h \ 791 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcompilerdetection.h \ 792 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobalstatic.h \ 793 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic.h \ 794 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbasicatomic.h \ 795 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bootstrap.h \ 796 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qgenericatomic.h \ 797 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_msvc.h \ 798 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_integrity.h \ 799 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qoldbasicatomic.h \ 800 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_vxworks.h \ 801 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_power.h \ 802 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_alpha.h \ 803 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv7.h \ 804 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv6.h \ 805 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv5.h \ 806 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bfin.h \ 807 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_ia64.h \ 808 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_mips.h \ 809 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_s390.h \ 810 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sh4a.h \ 811 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sparc.h \ 812 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_x86.h \ 813 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_cxx11.h \ 814 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_gcc.h \ 815 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_unix.h \ 816 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmutex.h \ 817 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlogging.h \ 818 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qflags.h \ 819 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypeinfo.h \ 820 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypetraits.h \ 821 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsysinfo.h \ 822 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs.h \ 823 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qnamespace.h \ 824 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs_impl.h \ 825 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qwindowdefs_win.h \ 826 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject.h \ 827 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstring.h \ 828 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qchar.h \ 829 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbytearray.h \ 830 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qrefcount.h \ 831 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qarraydata.h \ 832 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringbuilder.h \ 833 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlist.h \ 834 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qalgorithms.h \ 835 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qiterator.h \ 836 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcoreevent.h \ 837 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qscopedpointer.h \ 838 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmetatype.h \ 839 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvarlengtharray.h \ 840 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcontainerfwd.h \ 841 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qisenum.h \ 842 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject_impl.h \ 843 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmargins.h \ 844 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qrect.h \ 845 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsize.h \ 846 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qpoint.h \ 847 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpaintdevice.h \ 848 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpalette.h \ 849 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qcolor.h \ 850 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qrgb.h \ 851 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringlist.h \ 852 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qdatastream.h \ 853 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qiodevice.h \ 854 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qpair.h \ 855 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qregexp.h \ 856 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringmatcher.h \ 857 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qbrush.h \ 858 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvector.h \ 859 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qmatrix.h \ 860 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpolygon.h \ 861 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qregion.h \ 862 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qline.h \ 863 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qtransform.h \ 864 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpainterpath.h \ 865 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qimage.h \ 866 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpixmap.h \ 867 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsharedpointer.h \ 868 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qshareddata.h \ 869 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsharedpointer_impl.h \ 870 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qhash.h \ 871 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qfont.h \ 872 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qfontmetrics.h \ 873 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qfontinfo.h \ 874 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qsizepolicy.h \ 875 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qcursor.h \ 876 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qkeysequence.h \ 877 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qevent.h \ 878 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvariant.h \ 879 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmap.h \ 880 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qdebug.h \ 881 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtextstream.h \ 882 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlocale.h \ 883 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qset.h \ 884 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcontiguouscache.h \ 885 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qurl.h \ 886 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qurlquery.h \ 887 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfile.h \ 888 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfiledevice.h \ 889 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qvector2d.h \ 890 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qtouchdevice.h \ 891 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qtabwidget.h \ 892 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qicon.h \ 893 | sphinxengine.h \ 894 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QObject \ 895 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx.h" \ 896 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmd_ln.h" \ 897 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\sphinxbase_export.h" \ 898 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\prim_type.h" \ 899 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\win32\sphinx_config.h" \ 900 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\logmath.h" \ 901 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fe.h" \ 902 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fixpoint.h" \ 903 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\feat.h" \ 904 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmn.h" \ 905 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\agc.h" \ 906 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx_export.h" \ 907 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\cmdln_macro.h" \ 908 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_lattice.h" \ 909 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ngram_model.h" \ 910 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\mmio.h" \ 911 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_mllr.h" \ 912 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_search.h" \ 913 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fsg_model.h" \ 914 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\glist.h" \ 915 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\bitvec.h" \ 916 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ckd_alloc.h" \ 917 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\hash_table.h" \ 918 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\listelem_alloc.h" \ 919 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\err.h" \ 920 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ad.h" \ 921 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QThread \ 922 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qthread.h \ 923 | ui_mainwindow.h \ 924 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QTime \ 925 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qdatetime.h 926 | 927 | release\sphinxengine.obj: sphinxengine.cpp sphinxengine.h \ 928 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QObject \ 929 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject.h \ 930 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs.h \ 931 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qnamespace.h \ 932 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobal.h \ 933 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qconfig.h \ 934 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfeatures.h \ 935 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsystemdetection.h \ 936 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qprocessordetection.h \ 937 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcompilerdetection.h \ 938 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobalstatic.h \ 939 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic.h \ 940 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbasicatomic.h \ 941 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bootstrap.h \ 942 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qgenericatomic.h \ 943 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_msvc.h \ 944 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_integrity.h \ 945 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qoldbasicatomic.h \ 946 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_vxworks.h \ 947 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_power.h \ 948 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_alpha.h \ 949 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv7.h \ 950 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv6.h \ 951 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv5.h \ 952 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bfin.h \ 953 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_ia64.h \ 954 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_mips.h \ 955 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_s390.h \ 956 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sh4a.h \ 957 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sparc.h \ 958 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_x86.h \ 959 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_cxx11.h \ 960 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_gcc.h \ 961 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_unix.h \ 962 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmutex.h \ 963 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlogging.h \ 964 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qflags.h \ 965 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypeinfo.h \ 966 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypetraits.h \ 967 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsysinfo.h \ 968 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs_impl.h \ 969 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstring.h \ 970 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qchar.h \ 971 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbytearray.h \ 972 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qrefcount.h \ 973 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qarraydata.h \ 974 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringbuilder.h \ 975 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlist.h \ 976 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qalgorithms.h \ 977 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qiterator.h \ 978 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcoreevent.h \ 979 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qscopedpointer.h \ 980 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmetatype.h \ 981 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvarlengtharray.h \ 982 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcontainerfwd.h \ 983 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qisenum.h \ 984 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject_impl.h \ 985 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx.h" \ 986 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmd_ln.h" \ 987 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\sphinxbase_export.h" \ 988 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\prim_type.h" \ 989 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\win32\sphinx_config.h" \ 990 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\logmath.h" \ 991 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fe.h" \ 992 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fixpoint.h" \ 993 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\feat.h" \ 994 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmn.h" \ 995 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\agc.h" \ 996 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx_export.h" \ 997 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\cmdln_macro.h" \ 998 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_lattice.h" \ 999 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ngram_model.h" \ 1000 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\mmio.h" \ 1001 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_mllr.h" \ 1002 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_search.h" \ 1003 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fsg_model.h" \ 1004 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\glist.h" \ 1005 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\bitvec.h" \ 1006 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ckd_alloc.h" \ 1007 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\hash_table.h" \ 1008 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\listelem_alloc.h" \ 1009 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\err.h" \ 1010 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ad.h" 1011 | 1012 | release\mainwindow.obj: mainwindow.cpp mainwindow.h \ 1013 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\QMainWindow \ 1014 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qmainwindow.h \ 1015 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qwidget.h \ 1016 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qwindowdefs.h \ 1017 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobal.h \ 1018 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qconfig.h \ 1019 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfeatures.h \ 1020 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsystemdetection.h \ 1021 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qprocessordetection.h \ 1022 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcompilerdetection.h \ 1023 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobalstatic.h \ 1024 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic.h \ 1025 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbasicatomic.h \ 1026 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bootstrap.h \ 1027 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qgenericatomic.h \ 1028 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_msvc.h \ 1029 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_integrity.h \ 1030 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qoldbasicatomic.h \ 1031 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_vxworks.h \ 1032 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_power.h \ 1033 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_alpha.h \ 1034 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv7.h \ 1035 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv6.h \ 1036 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv5.h \ 1037 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bfin.h \ 1038 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_ia64.h \ 1039 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_mips.h \ 1040 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_s390.h \ 1041 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sh4a.h \ 1042 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sparc.h \ 1043 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_x86.h \ 1044 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_cxx11.h \ 1045 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_gcc.h \ 1046 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_unix.h \ 1047 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmutex.h \ 1048 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlogging.h \ 1049 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qflags.h \ 1050 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypeinfo.h \ 1051 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypetraits.h \ 1052 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsysinfo.h \ 1053 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs.h \ 1054 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qnamespace.h \ 1055 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs_impl.h \ 1056 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qwindowdefs_win.h \ 1057 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject.h \ 1058 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstring.h \ 1059 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qchar.h \ 1060 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbytearray.h \ 1061 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qrefcount.h \ 1062 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qarraydata.h \ 1063 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringbuilder.h \ 1064 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlist.h \ 1065 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qalgorithms.h \ 1066 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qiterator.h \ 1067 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcoreevent.h \ 1068 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qscopedpointer.h \ 1069 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmetatype.h \ 1070 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvarlengtharray.h \ 1071 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcontainerfwd.h \ 1072 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qisenum.h \ 1073 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject_impl.h \ 1074 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmargins.h \ 1075 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qrect.h \ 1076 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsize.h \ 1077 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qpoint.h \ 1078 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpaintdevice.h \ 1079 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpalette.h \ 1080 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qcolor.h \ 1081 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qrgb.h \ 1082 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringlist.h \ 1083 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qdatastream.h \ 1084 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qiodevice.h \ 1085 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qpair.h \ 1086 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qregexp.h \ 1087 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringmatcher.h \ 1088 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qbrush.h \ 1089 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvector.h \ 1090 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qmatrix.h \ 1091 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpolygon.h \ 1092 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qregion.h \ 1093 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qline.h \ 1094 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qtransform.h \ 1095 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpainterpath.h \ 1096 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qimage.h \ 1097 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qpixmap.h \ 1098 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsharedpointer.h \ 1099 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qshareddata.h \ 1100 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsharedpointer_impl.h \ 1101 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qhash.h \ 1102 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qfont.h \ 1103 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qfontmetrics.h \ 1104 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qfontinfo.h \ 1105 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qsizepolicy.h \ 1106 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qcursor.h \ 1107 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qkeysequence.h \ 1108 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qevent.h \ 1109 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvariant.h \ 1110 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmap.h \ 1111 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qdebug.h \ 1112 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtextstream.h \ 1113 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlocale.h \ 1114 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qset.h \ 1115 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcontiguouscache.h \ 1116 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qurl.h \ 1117 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qurlquery.h \ 1118 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfile.h \ 1119 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfiledevice.h \ 1120 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qvector2d.h \ 1121 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qtouchdevice.h \ 1122 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtWidgets\qtabwidget.h \ 1123 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtGui\qicon.h \ 1124 | sphinxengine.h \ 1125 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QObject \ 1126 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx.h" \ 1127 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmd_ln.h" \ 1128 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\sphinxbase_export.h" \ 1129 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\prim_type.h" \ 1130 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\win32\sphinx_config.h" \ 1131 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\logmath.h" \ 1132 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fe.h" \ 1133 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fixpoint.h" \ 1134 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\feat.h" \ 1135 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmn.h" \ 1136 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\agc.h" \ 1137 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx_export.h" \ 1138 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\cmdln_macro.h" \ 1139 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_lattice.h" \ 1140 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ngram_model.h" \ 1141 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\mmio.h" \ 1142 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_mllr.h" \ 1143 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_search.h" \ 1144 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fsg_model.h" \ 1145 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\glist.h" \ 1146 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\bitvec.h" \ 1147 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ckd_alloc.h" \ 1148 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\hash_table.h" \ 1149 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\listelem_alloc.h" \ 1150 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\err.h" \ 1151 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ad.h" \ 1152 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QThread \ 1153 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qthread.h \ 1154 | ui_mainwindow.h \ 1155 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QTime \ 1156 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qdatetime.h 1157 | 1158 | release\sphinxengine.obj: sphinxengine.cpp sphinxengine.h \ 1159 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\QObject \ 1160 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject.h \ 1161 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs.h \ 1162 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qnamespace.h \ 1163 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobal.h \ 1164 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qconfig.h \ 1165 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qfeatures.h \ 1166 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsystemdetection.h \ 1167 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qprocessordetection.h \ 1168 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcompilerdetection.h \ 1169 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qglobalstatic.h \ 1170 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic.h \ 1171 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbasicatomic.h \ 1172 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bootstrap.h \ 1173 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qgenericatomic.h \ 1174 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_msvc.h \ 1175 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_integrity.h \ 1176 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qoldbasicatomic.h \ 1177 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_vxworks.h \ 1178 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_power.h \ 1179 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_alpha.h \ 1180 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv7.h \ 1181 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv6.h \ 1182 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_armv5.h \ 1183 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_bfin.h \ 1184 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_ia64.h \ 1185 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_mips.h \ 1186 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_s390.h \ 1187 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sh4a.h \ 1188 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_sparc.h \ 1189 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_x86.h \ 1190 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_cxx11.h \ 1191 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_gcc.h \ 1192 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qatomic_unix.h \ 1193 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmutex.h \ 1194 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlogging.h \ 1195 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qflags.h \ 1196 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypeinfo.h \ 1197 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qtypetraits.h \ 1198 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qsysinfo.h \ 1199 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobjectdefs_impl.h \ 1200 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstring.h \ 1201 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qchar.h \ 1202 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qbytearray.h \ 1203 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qrefcount.h \ 1204 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qarraydata.h \ 1205 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qstringbuilder.h \ 1206 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qlist.h \ 1207 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qalgorithms.h \ 1208 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qiterator.h \ 1209 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcoreevent.h \ 1210 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qscopedpointer.h \ 1211 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qmetatype.h \ 1212 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qvarlengtharray.h \ 1213 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qcontainerfwd.h \ 1214 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qisenum.h \ 1215 | C:\QtSDK5.2.1\5.2.1\msvc2012\include\QtCore\qobject_impl.h \ 1216 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx.h" \ 1217 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmd_ln.h" \ 1218 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\sphinxbase_export.h" \ 1219 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\prim_type.h" \ 1220 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\win32\sphinx_config.h" \ 1221 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\logmath.h" \ 1222 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fe.h" \ 1223 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fixpoint.h" \ 1224 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\feat.h" \ 1225 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\cmn.h" \ 1226 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\agc.h" \ 1227 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\pocketsphinx_export.h" \ 1228 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\cmdln_macro.h" \ 1229 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_lattice.h" \ 1230 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ngram_model.h" \ 1231 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\mmio.h" \ 1232 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_mllr.h" \ 1233 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include\ps_search.h" \ 1234 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\fsg_model.h" \ 1235 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\glist.h" \ 1236 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\bitvec.h" \ 1237 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ckd_alloc.h" \ 1238 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\hash_table.h" \ 1239 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\listelem_alloc.h" \ 1240 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\err.h" \ 1241 | "..\..\..\..\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\sphinxbase\ad.h" 1242 | 1243 | release\moc_mainwindow.obj: release\moc_mainwindow.cpp 1244 | 1245 | release\moc_sphinxengine.obj: release\moc_sphinxengine.cpp 1246 | 1247 | ####### Install 1248 | 1249 | install: FORCE 1250 | 1251 | uninstall: FORCE 1252 | 1253 | FORCE: 1254 | 1255 | -------------------------------------------------------------------------------- /SpeechRecognizer/SpeechRecognizer.pro: -------------------------------------------------------------------------------- 1 | QT += core gui 2 | 3 | QT += widgets 4 | 5 | 6 | CONFIG += console 7 | CONFIG -= app_bundle 8 | 9 | TARGET = qt_console_app 10 | TEMPLATE = app 11 | 12 | INCLUDEPATH += "E:\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\include" \ 13 | "E:\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include" \ 14 | "E:\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\include\win32" 15 | 16 | LIBS += "E:\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\lib\Debug\*.lib" \ 17 | "E:\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\lib\Debug\*.lib" 18 | 19 | 20 | 21 | SOURCES += main.cpp\ 22 | mainwindow.cpp \ 23 | sphinxengine.cpp \ 24 | mainwindow.cpp \ 25 | sphinxengine.cpp 26 | 27 | HEADERS += mainwindow.h \ 28 | sphinxengine.h \ 29 | mainwindow.h \ 30 | sphinxengine.h 31 | 32 | FORMS += \ 33 | mainwindow.ui 34 | -------------------------------------------------------------------------------- /SpeechRecognizer/SpeechRecognizer.pro.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ProjectExplorer.Project.ActiveTarget 7 | 0 8 | 9 | 10 | ProjectExplorer.Project.EditorSettings 11 | 12 | true 13 | false 14 | true 15 | 16 | Cpp 17 | 18 | CppGlobal 19 | 20 | 21 | 22 | QmlJS 23 | 24 | QmlJSGlobal 25 | 26 | 27 | 2 28 | UTF-8 29 | false 30 | 4 31 | false 32 | true 33 | 1 34 | true 35 | 0 36 | true 37 | 0 38 | 8 39 | true 40 | 1 41 | true 42 | true 43 | true 44 | false 45 | 46 | 47 | 48 | ProjectExplorer.Project.PluginSettings 49 | 50 | 51 | 52 | ProjectExplorer.Project.Target.0 53 | 54 | Desktop Qt 5.2.1 MSVC2012 32bit 55 | Desktop Qt 5.2.1 MSVC2012 32bit 56 | qt.521.win32_msvc2012.essentials_kit 57 | 0 58 | 0 59 | 0 60 | 61 | E:/My Projects/GitHub/sinhala-speech-recognition/SpeechRecognizer 62 | 63 | 64 | true 65 | qmake 66 | 67 | QtProjectManager.QMakeBuildStep 68 | false 69 | true 70 | 71 | false 72 | 73 | 74 | true 75 | Make 76 | 77 | Qt4ProjectManager.MakeStep 78 | 79 | false 80 | 81 | 82 | 83 | 2 84 | Build 85 | 86 | ProjectExplorer.BuildSteps.Build 87 | 88 | 89 | 90 | true 91 | Make 92 | 93 | Qt4ProjectManager.MakeStep 94 | 95 | true 96 | clean 97 | 98 | 99 | 1 100 | Clean 101 | 102 | ProjectExplorer.BuildSteps.Clean 103 | 104 | 2 105 | false 106 | 107 | PATH=C:\QtSDK5.2.1\5.2.1\msvc2012\bin;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft SDKs\F#\3.0\Framework\v4.0\;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VSTSDB\Deploy;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\BIN;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools;C:\Windows\Microsoft.NET\Framework\v4.0.30319;C:\Windows\Microsoft.NET\Framework\v3.5;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\VCPackages;C:\Program Files (x86)\HTML Help Workshop;C:\Program Files (x86)\HTML Help Workshop;C:\Program Files (x86)\Microsoft Visual Studio 11.0\Team Tools\Performance Tools;C:\Program Files (x86)\Windows Kits\8.0\bin\x86;C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\;C:\Program Files\Microsoft MPI\Bin\;C:\Python\Lib\site-packages\PyQt5;C:\Python\;C:\oraclexe\app\oracle\product\11.2.0\server\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\MySQL\MySQL Server 5.5\bin;C:\Dwimperl\perl\bin;C:\Dwimperl\perl\site\bin;C:\Program Files (x86)\MKVtoolnix;C:\PHP5.4.16;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\nodejs\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Java\jdk1.8.0\bin;C:\mingw32-4.8\bin;C:\Program Files (x86)\GUI Turbo Assembler\BIN;C:\SlikSvn\bin;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\GNU\GnuPG\pub;C:\Python\Python3.1.4;C:\flex_sdk_4.6\bin;C:\db-derby-10.8.3.0\bin;C:\Users\i3-chathu-L\AppData\Roaming\npm;C:\apache-maven-3.3.1\bin;E:\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\pocketsphinx\bin\Debug;E:\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\built\sphinxbase\bin\Debug 108 | 109 | Debug 110 | 111 | Qt4ProjectManager.Qt4BuildConfiguration 112 | 2 113 | true 114 | 115 | 116 | E:/Data/SLIIT/Fourth Year - 1st Semester/CDAP-I/AppLibraries/cmusphinx/testapps/build-SpeechRecognizer-Desktop_Qt_5_2_1_MSVC2012_32bit-Release 117 | 118 | 119 | true 120 | qmake 121 | 122 | QtProjectManager.QMakeBuildStep 123 | false 124 | true 125 | 126 | false 127 | 128 | 129 | true 130 | Make 131 | 132 | Qt4ProjectManager.MakeStep 133 | 134 | false 135 | 136 | 137 | 138 | 2 139 | Build 140 | 141 | ProjectExplorer.BuildSteps.Build 142 | 143 | 144 | 145 | true 146 | Make 147 | 148 | Qt4ProjectManager.MakeStep 149 | 150 | true 151 | clean 152 | 153 | 154 | 1 155 | Clean 156 | 157 | ProjectExplorer.BuildSteps.Clean 158 | 159 | 2 160 | false 161 | 162 | Release 163 | 164 | Qt4ProjectManager.Qt4BuildConfiguration 165 | 0 166 | true 167 | 168 | 2 169 | 170 | 171 | 0 172 | Deploy 173 | 174 | ProjectExplorer.BuildSteps.Deploy 175 | 176 | 1 177 | Deploy locally 178 | 179 | ProjectExplorer.DefaultDeployConfiguration 180 | 181 | 1 182 | 183 | 184 | 185 | false 186 | false 187 | false 188 | false 189 | true 190 | 0.01 191 | 10 192 | true 193 | 1 194 | 25 195 | 196 | 1 197 | true 198 | false 199 | true 200 | valgrind 201 | 202 | 0 203 | 1 204 | 2 205 | 3 206 | 4 207 | 5 208 | 6 209 | 7 210 | 8 211 | 9 212 | 10 213 | 11 214 | 12 215 | 13 216 | 14 217 | 218 | 2 219 | 220 | SpeechRecognizer 221 | 222 | Qt4ProjectManager.Qt4RunConfiguration:E:/My Projects/GitHub/sinhala-speech-recognition/SpeechRecognizer/SpeechRecognizer.pro 223 | 224 | SpeechRecognizer.pro 225 | false 226 | true 227 | 228 | 3768 229 | true 230 | false 231 | false 232 | false 233 | true 234 | 235 | 1 236 | 237 | 238 | 239 | ProjectExplorer.Project.TargetCount 240 | 1 241 | 242 | 243 | ProjectExplorer.Project.Updater.EnvironmentId 244 | {ed6b35d8-1322-4068-bffe-8eca850c44a8} 245 | 246 | 247 | ProjectExplorer.Project.Updater.FileVersion 248 | 15 249 | 250 | 251 | -------------------------------------------------------------------------------- /SpeechRecognizer/debug/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udayaw/sinhala-speech-recognition/d126211e717399a15a1077576b038975b62bf9cb/SpeechRecognizer/debug/main.obj -------------------------------------------------------------------------------- /SpeechRecognizer/debug/mainwindow.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udayaw/sinhala-speech-recognition/d126211e717399a15a1077576b038975b62bf9cb/SpeechRecognizer/debug/mainwindow.obj -------------------------------------------------------------------------------- /SpeechRecognizer/debug/moc_mainwindow.cpp: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** Meta object code from reading C++ file 'mainwindow.h' 3 | ** 4 | ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.2.1) 5 | ** 6 | ** WARNING! All changes made in this file will be lost! 7 | *****************************************************************************/ 8 | 9 | #include "../mainwindow.h" 10 | #include 11 | #include 12 | #if !defined(Q_MOC_OUTPUT_REVISION) 13 | #error "The header file 'mainwindow.h' doesn't include ." 14 | #elif Q_MOC_OUTPUT_REVISION != 67 15 | #error "This file was generated using the moc from 5.2.1. It" 16 | #error "cannot be used with the include files from this version of Qt." 17 | #error "(The moc has changed too much.)" 18 | #endif 19 | 20 | QT_BEGIN_MOC_NAMESPACE 21 | struct qt_meta_stringdata_MainWindow_t { 22 | QByteArrayData data[8]; 23 | char stringdata[124]; 24 | }; 25 | #define QT_MOC_LITERAL(idx, ofs, len) \ 26 | Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ 27 | offsetof(qt_meta_stringdata_MainWindow_t, stringdata) + ofs \ 28 | - idx * sizeof(QByteArrayData) \ 29 | ) 30 | static const qt_meta_stringdata_MainWindow_t qt_meta_stringdata_MainWindow = { 31 | { 32 | QT_MOC_LITERAL(0, 0, 10), 33 | QT_MOC_LITERAL(1, 11, 16), 34 | QT_MOC_LITERAL(2, 28, 0), 35 | QT_MOC_LITERAL(3, 29, 22), 36 | QT_MOC_LITERAL(4, 52, 11), 37 | QT_MOC_LITERAL(5, 64, 4), 38 | QT_MOC_LITERAL(6, 69, 24), 39 | QT_MOC_LITERAL(7, 94, 28) 40 | }, 41 | "MainWindow\0startRecognition\0\0" 42 | "handleSpeechRecognized\0const char*\0" 43 | "text\0handleStartButtonClicked\0" 44 | "handleSetModelsButtonClicked\0" 45 | }; 46 | #undef QT_MOC_LITERAL 47 | 48 | static const uint qt_meta_data_MainWindow[] = { 49 | 50 | // content: 51 | 7, // revision 52 | 0, // classname 53 | 0, 0, // classinfo 54 | 4, 14, // methods 55 | 0, 0, // properties 56 | 0, 0, // enums/sets 57 | 0, 0, // constructors 58 | 0, // flags 59 | 1, // signalCount 60 | 61 | // signals: name, argc, parameters, tag, flags 62 | 1, 0, 34, 2, 0x06, 63 | 64 | // slots: name, argc, parameters, tag, flags 65 | 3, 1, 35, 2, 0x0a, 66 | 6, 0, 38, 2, 0x0a, 67 | 7, 0, 39, 2, 0x0a, 68 | 69 | // signals: parameters 70 | QMetaType::Void, 71 | 72 | // slots: parameters 73 | QMetaType::Void, 0x80000000 | 4, 5, 74 | QMetaType::Void, 75 | QMetaType::Void, 76 | 77 | 0 // eod 78 | }; 79 | 80 | void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) 81 | { 82 | if (_c == QMetaObject::InvokeMetaMethod) { 83 | MainWindow *_t = static_cast(_o); 84 | switch (_id) { 85 | case 0: _t->startRecognition(); break; 86 | case 1: _t->handleSpeechRecognized((*reinterpret_cast< const char*(*)>(_a[1]))); break; 87 | case 2: _t->handleStartButtonClicked(); break; 88 | case 3: _t->handleSetModelsButtonClicked(); break; 89 | default: ; 90 | } 91 | } else if (_c == QMetaObject::IndexOfMethod) { 92 | int *result = reinterpret_cast(_a[0]); 93 | void **func = reinterpret_cast(_a[1]); 94 | { 95 | typedef void (MainWindow::*_t)(); 96 | if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&MainWindow::startRecognition)) { 97 | *result = 0; 98 | } 99 | } 100 | } 101 | } 102 | 103 | const QMetaObject MainWindow::staticMetaObject = { 104 | { &QMainWindow::staticMetaObject, qt_meta_stringdata_MainWindow.data, 105 | qt_meta_data_MainWindow, qt_static_metacall, 0, 0} 106 | }; 107 | 108 | 109 | const QMetaObject *MainWindow::metaObject() const 110 | { 111 | return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; 112 | } 113 | 114 | void *MainWindow::qt_metacast(const char *_clname) 115 | { 116 | if (!_clname) return 0; 117 | if (!strcmp(_clname, qt_meta_stringdata_MainWindow.stringdata)) 118 | return static_cast(const_cast< MainWindow*>(this)); 119 | return QMainWindow::qt_metacast(_clname); 120 | } 121 | 122 | int MainWindow::qt_metacall(QMetaObject::Call _c, int _id, void **_a) 123 | { 124 | _id = QMainWindow::qt_metacall(_c, _id, _a); 125 | if (_id < 0) 126 | return _id; 127 | if (_c == QMetaObject::InvokeMetaMethod) { 128 | if (_id < 4) 129 | qt_static_metacall(this, _c, _id, _a); 130 | _id -= 4; 131 | } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { 132 | if (_id < 4) 133 | *reinterpret_cast(_a[0]) = -1; 134 | _id -= 4; 135 | } 136 | return _id; 137 | } 138 | 139 | // SIGNAL 0 140 | void MainWindow::startRecognition() 141 | { 142 | QMetaObject::activate(this, &staticMetaObject, 0, 0); 143 | } 144 | QT_END_MOC_NAMESPACE 145 | -------------------------------------------------------------------------------- /SpeechRecognizer/debug/moc_mainwindow.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udayaw/sinhala-speech-recognition/d126211e717399a15a1077576b038975b62bf9cb/SpeechRecognizer/debug/moc_mainwindow.obj -------------------------------------------------------------------------------- /SpeechRecognizer/debug/moc_sphinxengine.cpp: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** Meta object code from reading C++ file 'sphinxengine.h' 3 | ** 4 | ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.2.1) 5 | ** 6 | ** WARNING! All changes made in this file will be lost! 7 | *****************************************************************************/ 8 | 9 | #include "../sphinxengine.h" 10 | #include 11 | #include 12 | #if !defined(Q_MOC_OUTPUT_REVISION) 13 | #error "The header file 'sphinxengine.h' doesn't include ." 14 | #elif Q_MOC_OUTPUT_REVISION != 67 15 | #error "This file was generated using the moc from 5.2.1. It" 16 | #error "cannot be used with the include files from this version of Qt." 17 | #error "(The moc has changed too much.)" 18 | #endif 19 | 20 | QT_BEGIN_MOC_NAMESPACE 21 | struct qt_meta_stringdata_SphinxEngine_t { 22 | QByteArrayData data[6]; 23 | char stringdata[72]; 24 | }; 25 | #define QT_MOC_LITERAL(idx, ofs, len) \ 26 | Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ 27 | offsetof(qt_meta_stringdata_SphinxEngine_t, stringdata) + ofs \ 28 | - idx * sizeof(QByteArrayData) \ 29 | ) 30 | static const qt_meta_stringdata_SphinxEngine_t qt_meta_stringdata_SphinxEngine = { 31 | { 32 | QT_MOC_LITERAL(0, 0, 12), 33 | QT_MOC_LITERAL(1, 13, 16), 34 | QT_MOC_LITERAL(2, 30, 0), 35 | QT_MOC_LITERAL(3, 31, 11), 36 | QT_MOC_LITERAL(4, 43, 4), 37 | QT_MOC_LITERAL(5, 48, 22) 38 | }, 39 | "SphinxEngine\0speechRecognized\0\0" 40 | "const char*\0word\0handleStartRecognition\0" 41 | }; 42 | #undef QT_MOC_LITERAL 43 | 44 | static const uint qt_meta_data_SphinxEngine[] = { 45 | 46 | // content: 47 | 7, // revision 48 | 0, // classname 49 | 0, 0, // classinfo 50 | 2, 14, // methods 51 | 0, 0, // properties 52 | 0, 0, // enums/sets 53 | 0, 0, // constructors 54 | 0, // flags 55 | 1, // signalCount 56 | 57 | // signals: name, argc, parameters, tag, flags 58 | 1, 1, 24, 2, 0x06, 59 | 60 | // slots: name, argc, parameters, tag, flags 61 | 5, 0, 27, 2, 0x0a, 62 | 63 | // signals: parameters 64 | QMetaType::Void, 0x80000000 | 3, 4, 65 | 66 | // slots: parameters 67 | QMetaType::Void, 68 | 69 | 0 // eod 70 | }; 71 | 72 | void SphinxEngine::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) 73 | { 74 | if (_c == QMetaObject::InvokeMetaMethod) { 75 | SphinxEngine *_t = static_cast(_o); 76 | switch (_id) { 77 | case 0: _t->speechRecognized((*reinterpret_cast< const char*(*)>(_a[1]))); break; 78 | case 1: _t->handleStartRecognition(); break; 79 | default: ; 80 | } 81 | } else if (_c == QMetaObject::IndexOfMethod) { 82 | int *result = reinterpret_cast(_a[0]); 83 | void **func = reinterpret_cast(_a[1]); 84 | { 85 | typedef void (SphinxEngine::*_t)(const char * ); 86 | if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&SphinxEngine::speechRecognized)) { 87 | *result = 0; 88 | } 89 | } 90 | } 91 | } 92 | 93 | const QMetaObject SphinxEngine::staticMetaObject = { 94 | { &QObject::staticMetaObject, qt_meta_stringdata_SphinxEngine.data, 95 | qt_meta_data_SphinxEngine, qt_static_metacall, 0, 0} 96 | }; 97 | 98 | 99 | const QMetaObject *SphinxEngine::metaObject() const 100 | { 101 | return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; 102 | } 103 | 104 | void *SphinxEngine::qt_metacast(const char *_clname) 105 | { 106 | if (!_clname) return 0; 107 | if (!strcmp(_clname, qt_meta_stringdata_SphinxEngine.stringdata)) 108 | return static_cast(const_cast< SphinxEngine*>(this)); 109 | return QObject::qt_metacast(_clname); 110 | } 111 | 112 | int SphinxEngine::qt_metacall(QMetaObject::Call _c, int _id, void **_a) 113 | { 114 | _id = QObject::qt_metacall(_c, _id, _a); 115 | if (_id < 0) 116 | return _id; 117 | if (_c == QMetaObject::InvokeMetaMethod) { 118 | if (_id < 2) 119 | qt_static_metacall(this, _c, _id, _a); 120 | _id -= 2; 121 | } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { 122 | if (_id < 2) 123 | *reinterpret_cast(_a[0]) = -1; 124 | _id -= 2; 125 | } 126 | return _id; 127 | } 128 | 129 | // SIGNAL 0 130 | void SphinxEngine::speechRecognized(const char * _t1) 131 | { 132 | void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; 133 | QMetaObject::activate(this, &staticMetaObject, 0, _a); 134 | } 135 | QT_END_MOC_NAMESPACE 136 | -------------------------------------------------------------------------------- /SpeechRecognizer/debug/moc_sphinxengine.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udayaw/sinhala-speech-recognition/d126211e717399a15a1077576b038975b62bf9cb/SpeechRecognizer/debug/moc_sphinxengine.obj -------------------------------------------------------------------------------- /SpeechRecognizer/debug/qt_console_app.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udayaw/sinhala-speech-recognition/d126211e717399a15a1077576b038975b62bf9cb/SpeechRecognizer/debug/qt_console_app.exe -------------------------------------------------------------------------------- /SpeechRecognizer/debug/qt_console_app.exe.embed.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /SpeechRecognizer/debug/qt_console_app.exe_manifest.rc: -------------------------------------------------------------------------------- 1 | 1 /* CREATEPROCESS_MANIFEST_RESOURCE_ID */ 24 /* RT_MANIFEST */ "debug\\qt_console_app.exe.embed.manifest" 2 | -------------------------------------------------------------------------------- /SpeechRecognizer/debug/qt_console_app.exe_manifest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udayaw/sinhala-speech-recognition/d126211e717399a15a1077576b038975b62bf9cb/SpeechRecognizer/debug/qt_console_app.exe_manifest.res -------------------------------------------------------------------------------- /SpeechRecognizer/debug/qt_console_app.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udayaw/sinhala-speech-recognition/d126211e717399a15a1077576b038975b62bf9cb/SpeechRecognizer/debug/qt_console_app.ilk -------------------------------------------------------------------------------- /SpeechRecognizer/debug/qt_console_app.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udayaw/sinhala-speech-recognition/d126211e717399a15a1077576b038975b62bf9cb/SpeechRecognizer/debug/qt_console_app.pdb -------------------------------------------------------------------------------- /SpeechRecognizer/debug/sphinxengine.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udayaw/sinhala-speech-recognition/d126211e717399a15a1077576b038975b62bf9cb/SpeechRecognizer/debug/sphinxengine.obj -------------------------------------------------------------------------------- /SpeechRecognizer/main.cpp: -------------------------------------------------------------------------------- 1 | #include "mainwindow.h" 2 | #include 3 | #include 4 | #include 5 | #include 6 | 7 | #include 8 | #include 9 | #include 10 | 11 | 12 | #include 13 | using namespace std; 14 | 15 | 16 | cmd_ln_t * config; 17 | ps_decoder_t *ps; 18 | MainWindow *w; 19 | int main(int argc, char *argv[]) 20 | { 21 | QApplication a(argc, argv); 22 | w = new MainWindow(); 23 | w->show(); 24 | 25 | 26 | return a.exec(); 27 | } 28 | 29 | 30 | -------------------------------------------------------------------------------- /SpeechRecognizer/mainwindow.cpp: -------------------------------------------------------------------------------- 1 | #include "mainwindow.h" 2 | #include "ui_mainwindow.h" 3 | #include 4 | 5 | 6 | using namespace std; 7 | MainWindow::MainWindow(QWidget *parent) : 8 | QMainWindow(parent), 9 | ui(new Ui::MainWindow) 10 | { 11 | 12 | ui->setupUi(this); 13 | setWindowTitle("CMUSphinx Model Tester.." + QString(QChar(0x00A9)) + " Chathux"); 14 | 15 | 16 | ui->lblListeningBanner->setVisible(false); 17 | 18 | ui->teHistory->setReadOnly(true); 19 | 20 | 21 | hmmDirPath = nullptr; 22 | languageModelPath = nullptr; 23 | dictionaryPath = nullptr; 24 | 25 | ui->leHmmDir->setText("../models/sin-sl-v2/sinhala.ci_cont"); 26 | ui->leLanguageModel->setText("../models/sin-sl-v2/sinhala.lm"); 27 | ui->leDictionary->setText("../models/sin-sl-v2/sinhala.dic"); 28 | 29 | 30 | 31 | 32 | connect(ui->btnStart, SIGNAL(clicked()), this, SLOT(handleStartButtonClicked())); 33 | connect(ui->btnSetModels, SIGNAL(clicked()), this, SLOT(handleSetModelsButtonClicked())); 34 | 35 | 36 | currentSphinxThread = nullptr; 37 | 38 | 39 | 40 | 41 | } 42 | 43 | MainWindow::~MainWindow() 44 | { 45 | delete ui; 46 | } 47 | 48 | void MainWindow::handleSpeechRecognized(const char *text) 49 | { 50 | 51 | 52 | QString *qText = new QString(text); 53 | 54 | 55 | QString timeStamp = QTime::currentTime().toString("hh:mm:ss"); 56 | 57 | if(qText->isNull() || qText->length() == 0) 58 | { 59 | qText = new QString(" Filler~Noise "); 60 | }else{ 61 | 62 | ui->lblRecognizedWord->setText( " " + timeStamp + " : " + *qText); 63 | } 64 | 65 | ui->teHistory->append( timeStamp +" : " + *qText); 66 | 67 | 68 | } 69 | 70 | void MainWindow::handleStartButtonClicked() 71 | { 72 | 73 | se = new SphinxEngine(hmmDirPath,languageModelPath,dictionaryPath); 74 | 75 | 76 | connect(se, SIGNAL(speechRecognized(const char*)), this, SLOT(handleSpeechRecognized(const char*))); 77 | connect(this, SIGNAL(startRecognition()), se, SLOT(handleStartRecognition())); 78 | 79 | 80 | currentSphinxThread = new QThread(); 81 | se->moveToThread(currentSphinxThread); 82 | currentSphinxThread->start(); 83 | 84 | emit startRecognition(); 85 | 86 | 87 | ui->btnStart->setEnabled(false); 88 | ui->lblListeningBanner->setVisible(true); 89 | 90 | } 91 | 92 | void MainWindow::handleSetModelsButtonClicked() 93 | { 94 | 95 | if(currentSphinxThread != nullptr && currentSphinxThread->isRunning()) 96 | { 97 | currentSphinxThread->terminate(); 98 | } 99 | 100 | if(currentSphinxThread == nullptr || currentSphinxThread != nullptr && currentSphinxThread->isFinished()) 101 | { 102 | 103 | string tmpStr_HmmDirPath = ui->leHmmDir->text().toStdString(); 104 | string tmpStr_LanguageModelPath = ui->leLanguageModel->text().toStdString(); 105 | string tmpStr_DictionaryPath = ui->leDictionary->text().toStdString(); 106 | 107 | //delete hmmDirPath; 108 | //delete languageModelPath; 109 | //delete dictionaryPath; 110 | 111 | hmmDirPath = new char[tmpStr_HmmDirPath.length()]; 112 | languageModelPath = new char[tmpStr_LanguageModelPath.length()]; 113 | dictionaryPath = new char[tmpStr_DictionaryPath.length()]; 114 | 115 | 116 | strcpy(hmmDirPath, tmpStr_HmmDirPath.c_str()); 117 | strcpy(languageModelPath, tmpStr_LanguageModelPath.c_str()); 118 | strcpy(dictionaryPath, tmpStr_DictionaryPath.c_str()); 119 | 120 | cout << "PATHs have been set.." << endl; 121 | 122 | 123 | ui->btnStart->setEnabled(true); 124 | ui->lblListeningBanner->setVisible(false); 125 | 126 | ui->lblRecognizedWord->setText(""); 127 | ui->teHistory->setText(""); 128 | } 129 | } 130 | 131 | -------------------------------------------------------------------------------- /SpeechRecognizer/mainwindow.h: -------------------------------------------------------------------------------- 1 | #ifndef MAINWINDOW_H 2 | #define MAINWINDOW_H 3 | 4 | #include 5 | #include "sphinxengine.h" 6 | #include 7 | 8 | #include 9 | 10 | namespace Ui { 11 | class MainWindow; 12 | } 13 | 14 | class MainWindow : public QMainWindow 15 | { 16 | Q_OBJECT 17 | private: 18 | QThread *currentSphinxThread; 19 | SphinxEngine *se; 20 | 21 | char* hmmDirPath; 22 | char* languageModelPath; 23 | char* dictionaryPath; 24 | 25 | 26 | public: 27 | explicit MainWindow(QWidget *parent = 0); 28 | ~MainWindow(); 29 | 30 | void setRecognizedWord(const char* word); 31 | 32 | public slots: 33 | void handleSpeechRecognized(const char *text); 34 | void handleStartButtonClicked(); 35 | 36 | void handleSetModelsButtonClicked(); 37 | 38 | signals: 39 | void startRecognition(); 40 | 41 | private: 42 | Ui::MainWindow *ui; 43 | }; 44 | 45 | #endif // MAINWINDOW_H 46 | -------------------------------------------------------------------------------- /SpeechRecognizer/mainwindow.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 906 10 | 484 11 | 12 | 13 | 14 | MainWindow 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | Qt::Horizontal 24 | 25 | 26 | 27 | 40 28 | 20 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | background:rgb(255, 0, 4); 37 | color:rgb(255, 255, 255); 38 | 39 | 40 | Listening....... 41 | 42 | 43 | 44 | 45 | 46 | 47 | HMM dir 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | Language Model 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | Dictionary 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | SET/STOP 78 | 79 | 80 | 81 | 82 | 83 | 84 | Qt::Horizontal 85 | 86 | 87 | 88 | 89 | 90 | 91 | Start 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 12 100 | 101 | 102 | 103 | Last Detected!!! 104 | 105 | 106 | 107 | 108 | 109 | 110 | History 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 12 119 | 120 | 121 | 122 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> 123 | <html><head><meta name="qrichtext" content="1" /><style type="text/css"> 124 | p, li { white-space: pre-wrap; } 125 | </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:12pt; font-weight:400; font-style:normal;"> 126 | <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html> 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 12 135 | 136 | 137 | 138 | color:rgb(255, 255, 255); 139 | background:rgb(21, 154, 255); 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 0 154 | 0 155 | 906 156 | 26 157 | 158 | 159 | 160 | 161 | 162 | TopToolBarArea 163 | 164 | 165 | false 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | -------------------------------------------------------------------------------- /SpeechRecognizer/sphinxengine.cpp: -------------------------------------------------------------------------------- 1 | #include "sphinxengine.h" 2 | 3 | using namespace std; 4 | 5 | SphinxEngine::SphinxEngine() 6 | { 7 | 8 | } 9 | 10 | SphinxEngine::SphinxEngine(const char* hmmDir, const char* lm, const char *dict) 11 | { 12 | 13 | config = NULL; 14 | ps = NULL; 15 | 16 | config = cmd_ln_init(NULL, ps_args(), TRUE, 17 | "-hmm", hmmDir , 18 | "-lm", lm, 19 | "-dict", dict, 20 | NULL); 21 | if (config == NULL) 22 | { 23 | cout << "ERROR: cmd_ln_init failed" << endl; 24 | } 25 | else 26 | { 27 | ps = ps_init(config); 28 | if (ps == NULL) 29 | { 30 | cout << "ps_init failed" << endl; 31 | } 32 | } 33 | 34 | } 35 | 36 | void SphinxEngine::handleStartRecognition() 37 | { 38 | 39 | recognize_from_microphone(); 40 | 41 | 42 | } 43 | 44 | 45 | void SphinxEngine::recognize_from_file() 46 | { 47 | 48 | FILE *fh; 49 | char const *hyp, *uttid; 50 | int16 buf[512]; 51 | int rv; 52 | int32 score; 53 | 54 | //E:/Data/SLIIT/Fourth Year - 1st Semester/CDAP-I/AppLibraries/cmusphinx/models/en-us_simple/AcousticModel/simple_001.wav" 55 | 56 | fh = fopen("E:/Data/SLIIT/Fourth Year - 1st Semester/CDAP-I/AppLibraries/cmusphinx/models/sin-sl/AcousticModel/wav/sinhala_001.wav", "rb"); 57 | if (fh == NULL) 58 | { 59 | cout << "Error 1" << endl; 60 | return; 61 | } 62 | 63 | rv = ps_start_utt(ps); 64 | if (rv < 0) 65 | { 66 | cout << "Error 2" << endl; 67 | return; 68 | } 69 | 70 | while (!feof(fh)) { 71 | size_t nsamp; 72 | nsamp = fread(buf, 2, 512, fh); 73 | rv = ps_process_raw(ps, buf, nsamp, FALSE, FALSE); 74 | } 75 | rv = ps_end_utt(ps); 76 | if (rv < 0) 77 | { 78 | cout << "Error 3" << endl; 79 | return; 80 | } 81 | hyp = ps_get_hyp(ps, &score); 82 | if (hyp == NULL) 83 | { 84 | cout << "Broke====================================================================" << endl; 85 | return; 86 | } 87 | printf("Recognized: %s\n", hyp); 88 | 89 | emit speechRecognized(hyp); 90 | 91 | fclose(fh); 92 | ps_free(ps); 93 | cmd_ln_free_r(config); 94 | 95 | 96 | } 97 | 98 | 99 | void SphinxEngine::recognize_from_microphone() 100 | { 101 | if(ps == NULL) 102 | { 103 | return; 104 | } 105 | 106 | //ofstream myfile; 107 | //myfile.open("E:\\Data\\SLIIT\\Fourth Year - 1st Semester\\CDAP-I\\AppLibraries\\cmusphinx\\testapps\\App1\\res.txt"); 108 | //myfile << "\xEF\xBB\xBF"; 109 | 110 | 111 | ad_rec_t *ad; 112 | int16 adbuf[2048]; 113 | uint8 utt_started, in_speech; 114 | int32 k; 115 | char const *hyp; 116 | 117 | if ((ad = ad_open_dev(cmd_ln_str_r(config, "-adcdev"), 118 | (int) cmd_ln_float32_r(config, 119 | "-samprate"))) == NULL) 120 | E_FATAL("Failed to open audio device\n"); 121 | 122 | 123 | if (ad_start_rec(ad) < 0) 124 | E_FATAL("Failed to start recording\n"); 125 | 126 | 127 | if (ps_start_utt(ps) < 0) 128 | E_FATAL("Failed to start utterance\n"); 129 | 130 | utt_started = FALSE; 131 | printf("READY....\n"); 132 | for (;;) { 133 | if ((k = ad_read(ad, adbuf, 2048)) < 0) 134 | E_FATAL("Failed to read audio\n"); 135 | ps_process_raw(ps, adbuf, k, FALSE, FALSE); 136 | in_speech = ps_get_in_speech(ps); 137 | if (in_speech && !utt_started) { 138 | utt_started = TRUE; 139 | printf("Listening...\n"); 140 | } 141 | if (!in_speech && utt_started) { 142 | /* speech -> silence transition, time to start new utterance */ 143 | ps_end_utt(ps); 144 | hyp = ps_get_hyp(ps, NULL ); 145 | if (hyp != NULL) 146 | printf("%s\n", hyp); 147 | 148 | if(hyp != NULL) 149 | { 150 | //myfile << hyp << endl; 151 | 152 | char *text = new char[strlen(hyp)]; 153 | strcpy(text, hyp); 154 | 155 | emit speechRecognized(text); 156 | } 157 | 158 | 159 | 160 | if (ps_start_utt(ps) < 0) 161 | E_FATAL("Failed to start utterance\n"); 162 | 163 | utt_started = FALSE; 164 | printf("READY....\n"); 165 | } 166 | 167 | Sleep(100); 168 | 169 | } 170 | ad_close(ad); 171 | } 172 | -------------------------------------------------------------------------------- /SpeechRecognizer/sphinxengine.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include 4 | #include 5 | #include 6 | #include 7 | 8 | 9 | #define NOMINMAX 10 | #include 11 | 12 | 13 | #include 14 | 15 | 16 | #ifndef SPHINXENGINE_H 17 | #define SPHINXENGINE_H 18 | 19 | class SphinxEngine : public QObject 20 | { 21 | Q_OBJECT 22 | 23 | private: 24 | cmd_ln_t * config; 25 | ps_decoder_t *ps; 26 | 27 | public: 28 | SphinxEngine(); 29 | SphinxEngine(const char* hmmDir, const char* lm, const char *dict); 30 | 31 | void recognize_from_microphone(); 32 | void recognize_from_file(); 33 | 34 | signals: 35 | void speechRecognized(const char *word); 36 | 37 | public slots: 38 | void handleStartRecognition(); 39 | }; 40 | 41 | #endif // SPHINXENGINE_H 42 | -------------------------------------------------------------------------------- /SpeechRecognizer/ui_mainwindow.h: -------------------------------------------------------------------------------- 1 | /******************************************************************************** 2 | ** Form generated from reading UI file 'mainwindow.ui' 3 | ** 4 | ** Created by: Qt User Interface Compiler version 5.2.1 5 | ** 6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! 7 | ********************************************************************************/ 8 | 9 | #ifndef UI_MAINWINDOW_H 10 | #define UI_MAINWINDOW_H 11 | 12 | #include 13 | #include 14 | #include 15 | #include 16 | #include 17 | #include 18 | #include 19 | #include 20 | #include 21 | #include 22 | #include 23 | #include 24 | #include 25 | #include 26 | #include 27 | #include 28 | #include 29 | 30 | QT_BEGIN_NAMESPACE 31 | 32 | class Ui_MainWindow 33 | { 34 | public: 35 | QWidget *centralWidget; 36 | QGridLayout *gridLayout_2; 37 | QGridLayout *gridLayout; 38 | QSpacerItem *horizontalSpacer; 39 | QLabel *lblListeningBanner; 40 | QLabel *label_2; 41 | QLineEdit *leHmmDir; 42 | QLabel *label_4; 43 | QLineEdit *leLanguageModel; 44 | QLabel *label_5; 45 | QLineEdit *leDictionary; 46 | QPushButton *btnSetModels; 47 | QFrame *line; 48 | QPushButton *btnStart; 49 | QLabel *label; 50 | QLabel *label_3; 51 | QTextEdit *teHistory; 52 | QLabel *lblRecognizedWord; 53 | QMenuBar *menuBar; 54 | QToolBar *mainToolBar; 55 | QStatusBar *statusBar; 56 | 57 | void setupUi(QMainWindow *MainWindow) 58 | { 59 | if (MainWindow->objectName().isEmpty()) 60 | MainWindow->setObjectName(QStringLiteral("MainWindow")); 61 | MainWindow->resize(906, 484); 62 | centralWidget = new QWidget(MainWindow); 63 | centralWidget->setObjectName(QStringLiteral("centralWidget")); 64 | gridLayout_2 = new QGridLayout(centralWidget); 65 | gridLayout_2->setSpacing(6); 66 | gridLayout_2->setContentsMargins(11, 11, 11, 11); 67 | gridLayout_2->setObjectName(QStringLiteral("gridLayout_2")); 68 | gridLayout = new QGridLayout(); 69 | gridLayout->setSpacing(6); 70 | gridLayout->setObjectName(QStringLiteral("gridLayout")); 71 | horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); 72 | 73 | gridLayout->addItem(horizontalSpacer, 6, 5, 1, 1); 74 | 75 | lblListeningBanner = new QLabel(centralWidget); 76 | lblListeningBanner->setObjectName(QStringLiteral("lblListeningBanner")); 77 | lblListeningBanner->setStyleSheet(QLatin1String("background:rgb(255, 0, 4);\n" 78 | "color:rgb(255, 255, 255);")); 79 | 80 | gridLayout->addWidget(lblListeningBanner, 6, 2, 1, 1); 81 | 82 | label_2 = new QLabel(centralWidget); 83 | label_2->setObjectName(QStringLiteral("label_2")); 84 | 85 | gridLayout->addWidget(label_2, 0, 0, 1, 1); 86 | 87 | leHmmDir = new QLineEdit(centralWidget); 88 | leHmmDir->setObjectName(QStringLiteral("leHmmDir")); 89 | 90 | gridLayout->addWidget(leHmmDir, 0, 1, 1, 5); 91 | 92 | label_4 = new QLabel(centralWidget); 93 | label_4->setObjectName(QStringLiteral("label_4")); 94 | 95 | gridLayout->addWidget(label_4, 1, 0, 1, 1); 96 | 97 | leLanguageModel = new QLineEdit(centralWidget); 98 | leLanguageModel->setObjectName(QStringLiteral("leLanguageModel")); 99 | 100 | gridLayout->addWidget(leLanguageModel, 1, 1, 1, 5); 101 | 102 | label_5 = new QLabel(centralWidget); 103 | label_5->setObjectName(QStringLiteral("label_5")); 104 | 105 | gridLayout->addWidget(label_5, 2, 0, 1, 1); 106 | 107 | leDictionary = new QLineEdit(centralWidget); 108 | leDictionary->setObjectName(QStringLiteral("leDictionary")); 109 | 110 | gridLayout->addWidget(leDictionary, 2, 1, 1, 5); 111 | 112 | btnSetModels = new QPushButton(centralWidget); 113 | btnSetModels->setObjectName(QStringLiteral("btnSetModels")); 114 | 115 | gridLayout->addWidget(btnSetModels, 2, 6, 1, 1); 116 | 117 | line = new QFrame(centralWidget); 118 | line->setObjectName(QStringLiteral("line")); 119 | line->setFrameShape(QFrame::HLine); 120 | line->setFrameShadow(QFrame::Sunken); 121 | 122 | gridLayout->addWidget(line, 3, 0, 1, 7); 123 | 124 | btnStart = new QPushButton(centralWidget); 125 | btnStart->setObjectName(QStringLiteral("btnStart")); 126 | 127 | gridLayout->addWidget(btnStart, 5, 0, 2, 2); 128 | 129 | label = new QLabel(centralWidget); 130 | label->setObjectName(QStringLiteral("label")); 131 | QFont font; 132 | font.setPointSize(12); 133 | label->setFont(font); 134 | 135 | gridLayout->addWidget(label, 7, 0, 1, 3); 136 | 137 | label_3 = new QLabel(centralWidget); 138 | label_3->setObjectName(QStringLiteral("label_3")); 139 | 140 | gridLayout->addWidget(label_3, 8, 0, 1, 1); 141 | 142 | teHistory = new QTextEdit(centralWidget); 143 | teHistory->setObjectName(QStringLiteral("teHistory")); 144 | teHistory->setFont(font); 145 | 146 | gridLayout->addWidget(teHistory, 9, 0, 1, 7); 147 | 148 | lblRecognizedWord = new QLabel(centralWidget); 149 | lblRecognizedWord->setObjectName(QStringLiteral("lblRecognizedWord")); 150 | lblRecognizedWord->setFont(font); 151 | lblRecognizedWord->setStyleSheet(QLatin1String("color:rgb(255, 255, 255);\n" 152 | "background:rgb(21, 154, 255);")); 153 | 154 | gridLayout->addWidget(lblRecognizedWord, 7, 3, 1, 4); 155 | 156 | 157 | gridLayout_2->addLayout(gridLayout, 0, 0, 1, 1); 158 | 159 | MainWindow->setCentralWidget(centralWidget); 160 | menuBar = new QMenuBar(MainWindow); 161 | menuBar->setObjectName(QStringLiteral("menuBar")); 162 | menuBar->setGeometry(QRect(0, 0, 906, 26)); 163 | MainWindow->setMenuBar(menuBar); 164 | mainToolBar = new QToolBar(MainWindow); 165 | mainToolBar->setObjectName(QStringLiteral("mainToolBar")); 166 | MainWindow->addToolBar(Qt::TopToolBarArea, mainToolBar); 167 | statusBar = new QStatusBar(MainWindow); 168 | statusBar->setObjectName(QStringLiteral("statusBar")); 169 | MainWindow->setStatusBar(statusBar); 170 | 171 | retranslateUi(MainWindow); 172 | 173 | QMetaObject::connectSlotsByName(MainWindow); 174 | } // setupUi 175 | 176 | void retranslateUi(QMainWindow *MainWindow) 177 | { 178 | MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MainWindow", 0)); 179 | lblListeningBanner->setText(QApplication::translate("MainWindow", "Listening.......", 0)); 180 | label_2->setText(QApplication::translate("MainWindow", "HMM dir", 0)); 181 | label_4->setText(QApplication::translate("MainWindow", "Language Model", 0)); 182 | label_5->setText(QApplication::translate("MainWindow", "Dictionary", 0)); 183 | btnSetModels->setText(QApplication::translate("MainWindow", "SET/STOP", 0)); 184 | btnStart->setText(QApplication::translate("MainWindow", "Start", 0)); 185 | label->setText(QApplication::translate("MainWindow", "Last Detected!!!", 0)); 186 | label_3->setText(QApplication::translate("MainWindow", "History", 0)); 187 | teHistory->setHtml(QApplication::translate("MainWindow", "\n" 188 | "\n" 191 | "


", 0)); 192 | lblRecognizedWord->setText(QString()); 193 | } // retranslateUi 194 | 195 | }; 196 | 197 | namespace Ui { 198 | class MainWindow: public Ui_MainWindow {}; 199 | } // namespace Ui 200 | 201 | QT_END_NAMESPACE 202 | 203 | #endif // UI_MAINWINDOW_H 204 | -------------------------------------------------------------------------------- /models/sin-sl-v2/sinhala.ci_cont/feat.params: -------------------------------------------------------------------------------- 1 | -lowerf 130 2 | -upperf 6800 3 | -nfilt 25 4 | -transform dct 5 | -lifter 22 6 | -feat 1s_c_d_dd 7 | -agc none 8 | -cmn current 9 | -varnorm no 10 | -------------------------------------------------------------------------------- /models/sin-sl-v2/sinhala.ci_cont/mdef: -------------------------------------------------------------------------------- 1 | # Generated by E:\Data\SLIIT\Fourth Year - 1st Semester\CDAP-I\AppLibraries\cmusphinx\sphinxtrain-5prealpha-win32\bin\Release\mk_mdef_gen.exe on Fri Jul 24 14:22:14 2015 2 | 0.3 3 | 35 n_base 4 | 0 n_tri 5 | 140 n_state_map 6 | 105 n_tied_state 7 | 105 n_tied_ci_state 8 | 35 n_tied_tmat 9 | # 10 | # Columns definitions 11 | #base lft rt p attrib tmat ... state id's ... 12 | A - - - n/a 0 0 1 2 N 13 | AA - - - n/a 1 3 4 5 N 14 | AE - - - n/a 2 6 7 8 N 15 | AEE - - - n/a 3 9 10 11 N 16 | ANG - - - n/a 4 12 13 14 N 17 | B - - - n/a 5 15 16 17 N 18 | BARK - - - n/a 6 18 19 20 N 19 | CH - - - n/a 7 21 22 23 N 20 | CUCKOO - - - n/a 8 24 25 26 N 21 | D - - - n/a 9 27 28 29 N 22 | DH - - - n/a 10 30 31 32 N 23 | E - - - n/a 11 33 34 35 N 24 | EE - - - n/a 12 36 37 38 N 25 | G - - - n/a 13 39 40 41 N 26 | H - - - n/a 14 42 43 44 N 27 | I - - - n/a 15 45 46 47 N 28 | II - - - n/a 16 48 49 50 N 29 | J - - - n/a 17 51 52 53 N 30 | K - - - n/a 18 54 55 56 N 31 | L - - - n/a 19 57 58 59 N 32 | M - - - n/a 20 60 61 62 N 33 | N - - - n/a 21 63 64 65 N 34 | O - - - n/a 22 66 67 68 N 35 | OO - - - n/a 23 69 70 71 N 36 | P - - - n/a 24 72 73 74 N 37 | R - - - n/a 25 75 76 77 N 38 | S - - - n/a 26 78 79 80 N 39 | SH - - - n/a 27 81 82 83 N 40 | SIL - - - filler 28 84 85 86 N 41 | T - - - n/a 29 87 88 89 N 42 | TH - - - n/a 30 90 91 92 N 43 | U - - - n/a 31 93 94 95 N 44 | UU - - - n/a 32 96 97 98 N 45 | W - - - n/a 33 99 100 101 N 46 | Y - - - n/a 34 102 103 104 N 47 | -------------------------------------------------------------------------------- /models/sin-sl-v2/sinhala.ci_cont/means: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udayaw/sinhala-speech-recognition/d126211e717399a15a1077576b038975b62bf9cb/models/sin-sl-v2/sinhala.ci_cont/means -------------------------------------------------------------------------------- /models/sin-sl-v2/sinhala.ci_cont/mixture_weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udayaw/sinhala-speech-recognition/d126211e717399a15a1077576b038975b62bf9cb/models/sin-sl-v2/sinhala.ci_cont/mixture_weights -------------------------------------------------------------------------------- /models/sin-sl-v2/sinhala.ci_cont/noisedict: -------------------------------------------------------------------------------- 1 | SIL 2 | SIL 3 | SIL 4 | BARK 5 | CUCKOO -------------------------------------------------------------------------------- /models/sin-sl-v2/sinhala.ci_cont/transition_matrices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udayaw/sinhala-speech-recognition/d126211e717399a15a1077576b038975b62bf9cb/models/sin-sl-v2/sinhala.ci_cont/transition_matrices -------------------------------------------------------------------------------- /models/sin-sl-v2/sinhala.ci_cont/variances: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udayaw/sinhala-speech-recognition/d126211e717399a15a1077576b038975b62bf9cb/models/sin-sl-v2/sinhala.ci_cont/variances -------------------------------------------------------------------------------- /models/sin-sl-v2/sinhala.dic: -------------------------------------------------------------------------------- 1 | අකුණු A K U N U 2 | අගෝස්තු A G OO S TH U 3 | අඟහරුවාදා A N G A H A R U W AA DH AA 4 | අඟහරුවාදා(2) A ANG G A H A R U W AA DH AA 5 | අට A T A 6 | අටේ A T EE 7 | අඩවිය A D A W I Y A 8 | අඩවියට A D A W I Y A T A 9 | අතන A TH A N A 10 | අතරමන් A TH A R A M A N 11 | අත්දැකීම් A TH DH AE K II M 12 | අත්විඳින්නට A TH W I N DH I N N A T A 13 | අතු A TH U 14 | අද A DH A 15 | අද්භූත A DH B H UU TH A 16 | අන්තිමට A N TH I M A T A 17 | අන්න A N N A 18 | අනිද්දා A N I DH DH AA 19 | අපරාදෙ A P A R AA DH E 20 | අප්‍රේල් A P R EE L 21 | අපි A P I 22 | අපේ A P EE 23 | අම්මා A M M AA 24 | අමුත්තා A M U TH TH A 25 | අමුත්තෝ A M U TH TH OO 26 | අමුතුම A M U TH U M A 27 | අමුතුවෙන් A M U TH U W E N 28 | අඹ A M B A 29 | අය A Y A 30 | අයට A Y A T A 31 | අරගෙන A R A G E N A 32 | අලවන්න A L A W A N N A 33 | අවදිවෙනවා A W A DH I W E N A W AA 34 | අවසර A W A S A R A 35 | අවුරුදු A U R U DH U 36 | ආකාරයේ AA K AA R A Y EE 37 | ආයතනය AA Y A TH A N A Y A 38 | ආයතනයෙන් AA Y A TH A N A Y E N 39 | ආයතනයේ AA Y A TH A N A Y EE 40 | ආයතනයේ(2) AA Y A TH A N A EE 41 | ආයුබෝවන් AA Y U B OO W A N 42 | ආයෙත් AA Y E TH 43 | ආවද AA W A DH A 44 | ආවා AA W AA 45 | ආවේ AA W EE 46 | ඇට්ටේරිය A T T EE R I Y A 47 | ඇති AE TH I 48 | ඇසල AE S A L A 49 | ඈත AEE TH A 50 | ඉංග්‍රීසි I ANG G R II S I 51 | ඉක්මනින් I K M A N I N 52 | ඉගෙන I G E N A 53 | ඉන්න I N N A 54 | ඉන්නවා I N N A W AA 55 | ඉර I R A 56 | ඉරිදා I R I DH AA 57 | ඉලක්කම I L A K K A M A 58 | ඉලක්කම් I L A K K A M 59 | ඉල් I L 60 | ඉල්ලනවා I L L A N A W AA 61 | ඉස්සරහ I S S A R A H A 62 | ඉස්සරහට I S S A R A H A T A 63 | ඉහල I H A L A 64 | ඉහලට I H A L A T A 65 | ඊශාන II SH AA N A 66 | උඩට U D A T A 67 | උත්සාහ U TH S AA H A 68 | උතුරෙන් U TH U R E N 69 | උදව් U DH A U 70 | උදව්වක් U DH A U W W A K 71 | උදෑසන U DH AEE S A N A 72 | උදෑසනක් U DH AEE S A N A K 73 | උදෑසනම U D AEE S A N A M A 74 | උදෑසනින් U DH AEE S A N I N 75 | උදෑසනින්ම U DH AEE S A N I N M A 76 | උදේට U DH EE T A 77 | උඳුවප් U N DH U W A P 78 | උපන් U P A N 79 | උපාදිය U P AA DH I Y A 80 | උපාදියක් U P AA DH I Y A K 81 | උයනවා U Y A N A W AA 82 | එක E K A 83 | එකක් E K A K 84 | එකෙන් E K E N 85 | එකේ E K EE 86 | එතැන් E TH AE N 87 | එදින E DH I N A 88 | එන E N A 89 | එනකොට E N A K O T A 90 | එනවා E N A W AA 91 | එන්න E N N A 92 | එන්නම් E N N A M 93 | එන්නේ E N N EE 94 | එම E M A 95 | එය E Y A 96 | එයා E Y AA 97 | එහෙනම් E H E N A M 98 | එහේ E H EE 99 | ඒ EE 100 | ඒක EE K A 101 | ඒකට EE K A T A 102 | ඒකේ EE K EE 103 | ඔක්තෝම්බර් O K TH OO M B A R 104 | ඔන්න O N N A 105 | ඔබ O B A 106 | ඔබගේ O B A G EE 107 | ඔබට O B A T A 108 | ඔබව O B A W A 109 | ඔබේ O B EE 110 | ඔයා O Y AA 111 | ඔයාගේ O Y AA G EE 112 | ඔව් O W 113 | ඔහු O H H U 114 | ඕන OO N A 115 | කණගාටුයි K A N A G AA T U Y I 116 | කතා K A TH AA 117 | කතාව K A TH AA W A 118 | කනවා K A N A W AA 119 | කන්න K A N N A 120 | කපන් K A P A N 121 | කපන්න K A P A N N A 122 | කමක් K A M A K 123 | කරගත්ත K A R A G A TH TH A 124 | කරදර K A R A DH A R A 125 | කරනවද K A R A N A W A DH A 126 | කරනවා K A R A N A W AA 127 | කරනවාද K A R A N A W AA DH A 128 | කරන්න K A R A N N A 129 | කරන්නේ K A R A N N EE 130 | කර්සරය K H A R S A R A Y A 131 | කරුණාකරල K A R U N AA K A R A L A 132 | කරුණාකරලා K A R U N AA K A R A L AA 133 | කරුණාවන්ත K A R U N AA W A N TH A 134 | කල්පනා K A L P A N AA 135 | කවදාද K A W A DH AA DH A 136 | කවදාවත් K A W A DH AA W A TH 137 | කවරෙක්ද K A W A R E K DH A 138 | කළ K A L H A 139 | ක්ලිකය K L I K A Y A 140 | ක්ලික් K L I K 141 | කාන්තාව K AA N TH AA W A 142 | කාරය K AA R A Y A 143 | කාරයක් K AA R A Y A K 144 | කාර් K AA R 145 | කාර්යබහුල K AA R Y A B A H U L A 146 | කාලෙකින් K AA L E K I N 147 | කාලෙට K AA L E T A 148 | කැරෑ K AE R AEE 149 | කෑම K AEE M A 150 | කෑවද K AEE W A DH A 151 | කෑවෙ K AEE W E 152 | කෑවේ K AEE W EE 153 | කියන්න K I Y A N N A 154 | කියන්නේ K I Y A N N EE 155 | කියල K I Y A L A 156 | කිව්වත් K I W W A TH 157 | කිව්වා K I W W AA 158 | කිව්වේ K I W W EE 159 | කීයද K II Y A DH A 160 | කොහි K O H I 161 | කොහෙද K O H E DH A 162 | කොහෙන්ද K O H E N DH A 163 | කොහේද K O H EE DH A 164 | කොහොම K O H O M A 165 | කොහොමද K O H O M A DH A 166 | කොළ K O L A 167 | කෝප්පයෙන් K OO P P A Y E N 168 | ගත් G A TH 169 | ගත්ත G A TH TH A 170 | ගත්තා G A TH TH AA 171 | ගත්තේ G A TH TH EE 172 | ගන්න G A N N A 173 | ගන්නම් G A N N A M 174 | ගන්නවා G A N N A W AA 175 | ගන්නේ G A N N EE 176 | ගම G A M A 177 | ගමක් G A M A K 178 | ගමනක් G A M A N A K 179 | ගමන් G A M A N 180 | ගසක් G A S A K 181 | ගස් G A S 182 | ගසේ G A S EE 183 | ගහ G A H A 184 | ගහක් G A H A K 185 | ගහට G A H A T A 186 | ගහේ G A H EE 187 | ගහේම G A H EE M A 188 | ගිනිගන්නවා G I N I G A N N A W AA 189 | ගිහින් G I H I N 190 | ගිහිල්ලා G I H I L L AA 191 | ගුණාංග G U N AA ANG G A 192 | ගෙට G E T A 193 | ගෙඩි G E D I 194 | ගෙඩිත් G E D I TH 195 | ගෙදර G E DH A R A 196 | ගෙදරට G E DH A R A T A 197 | ගෙන G E N A 198 | ගෙනාවද G E N AA W A DH A 199 | ගෙනාවා G E N AA W AA 200 | ගෙවයි G E W A Y I 201 | ගේ G EE 202 | ගොඩක් G O D A K 203 | ගොඩාක් G O D AA K 204 | චතුරංග CH A TH U R A N G A 205 | ජනවාරි J A N A W AA R I 206 | ජය J A Y A 207 | ජුනි J U N I 208 | ජූලි J UU L I 209 | ටිකක් T I K A K 210 | තරමක් TH A R A M A K 211 | තව TH A W A 212 | තවත් TH A W A TH 213 | තවමත් TH A W A M A TH 214 | තාක්ෂණ TH AA K SH A N A 215 | තාත්තා TH AA TH TH AA 216 | තාම TH AA M A 217 | තිත TH I TH A 218 | තිත්ත TH I TH TH A 219 | තිත්තයි TH I TH TH A Y I 220 | තිබ්බා TH I B B AA 221 | තිබුණ TH I B U N A 222 | තිබුණා TH I B U N AA 223 | තිබෙනවද TH I B E N A W A DH A 224 | තිබෙනවාද TH I B E N A W AA DH A 225 | තියෙනවා TH I Y E N A W AA 226 | තියෙන්නේ TH I Y E N N EE 227 | තුන TH U N A 228 | තුනේ TH U N EE 229 | තේ TH EE 230 | තේරුම් TH EE R U M 231 | තේරෙනවා TH EE R E N A W AA 232 | තේරෙනවාද TH EE R E N A W AA DH A 233 | තොරතුරු TH O R A TH U R U 234 | දක්ෂිණ DH A K SH I N A 235 | දකුණට DH A K U N A T A 236 | දකුණු DH A K U N U 237 | දවල් DH A W A L 238 | දවල්ට DH A W A L T A 239 | දවස DH A W A S A 240 | දවසක් DH A W A S A K 241 | දහය DH A H A Y A 242 | දහයේ DH A H A Y EE 243 | දහවලක් DH A H A W A L A K 244 | ද්වි DH W I 245 | දැක්කද DH AE K K A DH A 246 | දැක්කාද DH AE K K AA DH A 247 | දැක්කෙ DH AE K K E 248 | දැනගන්න DH AE N A G A N N A 249 | දැනගෙන DH AE N A G E N A 250 | දැන් DH AE N 251 | දිනය DH I N A Y A 252 | දිනයක් DH I N A Y A K 253 | දියමන්ති DH I Y A M A N TH I 254 | දුන්නා DH U N N AA 255 | දුරුතු DH U R U TH U 256 | දුවනවා DH U W A N A W AA 257 | දෙක DH E K A 258 | දෙකක්ම DH E K A K M A 259 | දෙකට DH E K A T A 260 | දෙකේ DH E K EE 261 | දෙකේම DH E K EE M A 262 | දෙනව DH E N A W A 263 | දෙනවා DH E N A W AA 264 | දෙන්න DH E N N A 265 | දෙසින් DH E S I N 266 | දෙසෙම්බර් DH E S E M B A R 267 | දේකුත් DH EE K U TH 268 | දේවල් DH EE W A L 269 | නගරය N A G A R A Y A 270 | නත්තලක් N A TH TH A L A K 271 | නම N A M A 272 | නම් N A M 273 | නව N A W A 274 | නවතින්න N A W A TH I N N A 275 | නවම් N A W A M 276 | නවය N A W A Y A 277 | නවයේ N A W A Y EE 278 | නවාතැන් N A W AA TH AE N 279 | නා N AA 280 | නැගිටිනවා N AE G I T I N A W AA 281 | නැති N AE TH I 282 | නැවතත් N AE W A TH A TH 283 | නැහැ N AE H AE 284 | නෑ N AEE 285 | නිකිණි N I K I N I 286 | නිතරම N I TH A R A M A 287 | නිදාගන්නවා N I DH AA G A N N A W AA 288 | නිදාගෙන N I DH AA G E N A 289 | නිදිමතයි N I DH I M A TH A Y I 290 | නිවසින් N I W A S I N 291 | නිසා N I S AA 292 | නෙමේ N E M EE 293 | නොවූ N O W UU 294 | නොවෙම්බර් N O W E M B A R 295 | පටන් P A T A N 296 | පද්ධති P A DH DH A TH I 297 | පද්ධතිය P A DH DH A TH I Y A 298 | පන්සල P A N S A L A 299 | පන්සලට P A N S A L A T A 300 | පන්සල් P A N S A L 301 | පරිගණකය P A R I G A N A K A Y A 302 | පසු P A S U 303 | පසුදින P A S U DH I N A 304 | පහ P A H A 305 | පහලට P A H A L A T A 306 | පහේ P A H EE 307 | ප්‍රණීත P R A N II TH A 308 | ප්‍රමාදයි P R A M AA DH A Y I 309 | පාටයි P AA T A Y I 310 | පාඩම් P AA D A M 311 | පායනවා P AA Y A N A W AA 312 | පාර P AA R A 313 | පාසැල් P AA S AE L 314 | පැතුම් P AE TH U M 315 | පැන්සල P AE N S A L A 316 | පැන්සලක් P AE N S A L A K 317 | පැන්සල් P AE N S A L 318 | පැළ P AE L A 319 | පැළයක් P AE L A Y A K 320 | පෑන P AEE N A 321 | පෑනක් P AEE N A K 322 | පෑන් P AEE N 323 | පිටපත P I T A P A TH A 324 | පිටපත් P I T A P A TH 325 | පිටව P I T A W A 326 | පිටිපස්ස P I T I P A S S A 327 | පිටිපස්සට P I T I P A S S A T A 328 | පිටුව P I T U W A 329 | පිවිසෙන්න P I W I S E N N A 330 | පිළිගන්නවා P I L I G A N N A W AA 331 | පුරාම P U R AA M A 332 | පුලුවන්ද P U L U W A N DH A 333 | පුළුවන් P U L U W A N 334 | පෙන්වන්න P E N W A N N A 335 | පෙබරවාරි P E B A R A W AA R I 336 | පොඩි P O D I 337 | පොත P O TH A 338 | පොතක් P O TH A K 339 | පොසොන් P O S O N 340 | බක් B A K 341 | බඩගිනියි B A D A G I N I Y I 342 | බත් B A TH 343 | බදාදා B A DH AA DH AA 344 | බලාපොරොත්තු B A L AA P O R O TH TH U 345 | බසය B A S A Y A 346 | බසයක් B A S A Y A K 347 | බසයෙන් B A S A Y E N 348 | බස් B A S 349 | බ්‍රව්සරය B R A W U S A R A Y A 350 | බ්‍රව්සරය(2) B R A U S A R A Y A 351 | බ්‍රහස්පතින්දා B R A H A S P A TH I N DH AA 352 | බැහැ B AE H AE 353 | බිනර B I N A R A 354 | බියකරු B H I Y A K A R U 355 | බෙහෙත් B E H E TH 356 | බොත්තම B O TH TH A M A 357 | බොනවා B O N A W AA 358 | බොරුවට B O R U W A T A 359 | බොහොම B O H O M A 360 | භාෂාවක් B H A SH AA W A K 361 | මගේ M A G G EE 362 | මට M A T A 363 | මතකයි M A TH A K A Y I 364 | මදි M A DH I 365 | මම M H A M A 366 | මම(2) M A M A 367 | මල් M A L 368 | මලුත් M A L U TH 369 | මස M A S A 370 | මහත්මය M A H A TH M A Y A 371 | මහත්මයා M A H A TH M A Y AA 372 | මහන්සි M A H A N S I 373 | මහා M A H AA 374 | මාර්තු M AA R TH U 375 | මාලයක් M AA L A Y A K 376 | මාසය M AA S A Y A 377 | මාසයේ M AA S A Y EE 378 | මැදින් M AE DH I N 379 | මැයි M AE Y I 380 | මිදුල M I DH U L A 381 | මිදුලම M I DH U L A M A 382 | මිදුලේ M I DH U L EE 383 | මිරිස් M I R I S 384 | මිලට M I L A T A 385 | මිලදී M I L A DH II 386 | මිහිරි M I H I R I 387 | මුකුත් M U K U TH 388 | මුහුණපාන්නට M U H H U N A P AA N N A T A 389 | මුහුණු M U H U N U 390 | මුළු M U L U 391 | මූසික M UU S I K A 392 | මූසිකය M UU S I K A Y A 393 | මෙච්චර M E CH CH A R A 394 | මෙතන M E TH A N A 395 | මෙතනින් M E TH A N I N 396 | මෙතරම් M E TH A R A M 397 | මෙතෙක් M E TH E K 398 | මෙය M E Y A 399 | මෙහෙයුම් M E H E Y U M 400 | මෙහෙයුම්(2) M E H E U M 401 | මේ M EE 402 | මේක M EE K A 403 | මොකක්ද M O K A K DH A 404 | මොනවත් M O N A W A TH 405 | මොනවද M O N A W A DH A 406 | මොනවාද M O N A W AA DH A 407 | යනවා Y A N A W AA 408 | යන්න Y A N N A 409 | යන්නට Y A N N A T A 410 | යන්නය Y A N N A Y A 411 | යන්නේ Y A N N EE 412 | යවන්න Y A W A N N A 413 | යාවි Y AA W I 414 | රත්තරන් R A TH TH A R A N 415 | රතු R A TH U 416 | රාත්‍රිය R AA TH R I Y A 417 | රාත්‍රියේ R AA TH TH R I Y E 418 | රාත්‍රී R AA TH TH R II 419 | රැසකටද R AE S A K A T A DH A 420 | රැසකටය R AE S A K A T A Y A 421 | රෑ R AEE 422 | රෑට R AEE T A 423 | රෝල් R OO L 424 | ලංකා L A ANG K AA 425 | ලැබීම L AE B II M A 426 | ලැබෙන්නේ L AE B E N N EE 427 | ලියල L I Y A L A 428 | ලුණු L U N U 429 | ලෙස L E S A 430 | ලේසි L EE S I 431 | ලොකු L O K U 432 | වටිනවා W A T I N A W AA 433 | වඩා W A D AA 434 | වප් W A P 435 | වමට W A M A T A 436 | වම් W A M 437 | වල W A L A 438 | වලට W A L A T A 439 | වලව්වේ W A L A W W EE 440 | වසරක් W A S A R A K 441 | වසිනවා W A S I N A W AA 442 | වහිනවා W A H I N A W AA 443 | වාස W AA S A 444 | වාසනා W AA S A N AA 445 | වාසනාවන් W AA S A N AA W A N 446 | වැඩක් W AE D A K 447 | වැඩකුත් W AE D A K U TH 448 | වැඩට W AE D A T A 449 | වැඩියි W AE D I Y I 450 | වැඩේ W AE D EE 451 | වැරදිලා W AE R DH I L AA 452 | වැලි W AE L I 453 | වැස්ස W AE S S AA 454 | වැසි W AE S I 455 | වෑනය W AEE N A Y A 456 | වෑන් W AEE N 457 | විධානයක් W I DH AA N A Y A K 458 | විධානයක්(2) W I DH H AA N A Y A K 459 | විනෝදෙන් W I N OO DH E N 460 | විවෘත W I W U R TH A 461 | වුණා U N AA 462 | වුණා(2) W U N AA 463 | වුනත් W U N A TH 464 | වුනත්(2) U N A TH 465 | වුනාට W U N AA T A 466 | වුනාට(2) U N AA T A 467 | වෙනකොට W E N A K O T A 468 | වෙන්න W E N N A 469 | වෙබ් W E B 470 | වෙරළු W E R A L U 471 | වෙලා W E L AA 472 | වෙලාවක් W E L AA W A K 473 | වෙසක් W E S A K 474 | වේගෙන් W EE G E N 475 | වේවා W EE W AA 476 | වේවි W EE W I 477 | ශ්‍රී SH R II 478 | සකසන්න S A K A S A N N A 479 | සතුටක් S A TH U T A K 480 | සනීප S A N II P A 481 | සනීපද S A N II P A DH A 482 | සනීපයි S A N II P A Y I 483 | සඳුදා S A N DH U DH AA 484 | සමහර S A M A H A R A 485 | සමාවන්න S A M AA W A N N A 486 | සමාවෙන්න S A M AA W E N N A 487 | සහ S A H A 488 | ස්තුතියි S TH U TH I Y I 489 | සාදරයෙන් S AA DH A R A Y E N 490 | සැන්දෑවක් S AE N DH AEE W A K 491 | සැප S AE P A 492 | සැප්තෙම්බර් S AE P TH E M B A R 493 | සිංහල S I ANG H A L A 494 | සිකුරාදා S I K U R AA DH AA 495 | සිට S I T A 496 | සිටද S I T A DH A 497 | සිටින S I T I N A 498 | සිදුවිය S I DH U W I Y A 499 | සිදුවූයේ S I DH U W UU Y EE 500 | සුදු S U DH U 501 | සුන්දර S U N DH A R A 502 | සුන්දරද S U N DH A R A DH A 503 | සුන්දරයි S U N DH A R A Y I 504 | සුභ S U B H A 505 | සුවඳක් S U W A N DH A K 506 | සුවඳයි S U W A N DH A Y I 507 | සෙනසුරාදා S E N A S U R AA DH AA 508 | සෙවණයි S E W A N A Y I 509 | සෙවුම S E W U M A 510 | සෙවුම(2) S E U M A 511 | සෙවුම් S E W U M 512 | සෙවුම්(2) S E U M 513 | හත H A TH A 514 | හතර H A TH A R A 515 | හතරක් H A TH A R A K 516 | හතරේ H A TH A R EE 517 | හතේ H A TH EE 518 | හය H A Y A 519 | හයේ H A Y EE 520 | හයේ(2) H A EE 521 | හරි H A R I 522 | හරිම H A R I M A 523 | හවස H A W A S A 524 | හවසට H A W A S A T A 525 | හවස් H A W A S 526 | හා H AA 527 | හැදිලා H AE DH I L AA 528 | හැන්දෑවට H AE N DH AEE W A T A 529 | හැඳින්වේ H AE N DH I N W EE 530 | හැමදේටම H AE M A DH EE T A M A 531 | හුඟ H U ANG G A 532 | හෙට H E T A 533 | හෙමින් H E M I N 534 | හොඳට H O N DH A T A 535 | හොඳටම H O N DH A T A M A 536 | හොඳින් H O N DH I N 537 | ළමයින් L A M A Y I N 538 | ළමයින්(2) L H A M A Y I N 539 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | ### Sinhala Speech Recognition 2 | 3 | This is a sinhala speech recognition application developed using pocketsphinx and QtSdk. 4 | i wrote this application to test the sinhala acoustic model which i have been training myself. 5 | The trained acoustic model, language model and the dictionary for sinhala language can be found inside 6 | the ```models/sin-sl-v2``` directory. since this model has been trained with a small set of recordings 7 | of a one speaker, the speech recognition accuracy for other people are still pretty low. 8 | word list can be found in the dictionary file where ```models/sin-sl-v2/sinhala.dic```. 9 | 10 | more on acousting model training can be found [here](http://cmusphinx.sourceforge.net/wiki/tutorialam) --------------------------------------------------------------------------------