You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
464 B
15 lines
464 B
3 years ago
|
# This contains the locations of binarys build required for running the examples.
|
||
|
|
||
|
SPEECHX_ROOT=$PWD/../..
|
||
|
SPEECHX_EXAMPLES=$SPEECHX_ROOT/build/examples
|
||
|
|
||
3 years ago
|
SPEECHX_TOOLS=$SPEECHX_ROOT/tools
|
||
|
TOOLS_BIN=$SPEECHX_TOOLS/valgrind/install/bin
|
||
|
|
||
3 years ago
|
[ -d $SPEECHX_EXAMPLES ] || { echo "Error: 'build/examples' directory not found. please ensure that the project build successfully"; }
|
||
|
|
||
|
export LC_AL=C
|
||
|
|
||
3 years ago
|
SPEECHX_BIN=$SPEECHX_EXAMPLES/nnet
|
||
3 years ago
|
export PATH=$PATH:$SPEECHX_BIN:$TOOLS_BIN
|