1echo off
2
3rem This batch script assumes all files are relative to the main
4rem directory (S3ROOT).
5
6set S3ROOT=..\..
7pushd %S3ROOT%
8set S3CONTINUOUS=.\bin\Debug\livedecode.exe
9
10set ARGS=.\model\lm\an4\args.an4.test.win32
11
12echo " "
13echo "sphinx3-simple:"
14echo "  Demo CMU Sphinx-3 decoder called with command line arguments."
15echo " "
16
17echo "<executing $S3CONTINUOUS, please wait>"
18%S3CONTINUOUS% %ARGS%
19
20popd
21