|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #!/bin/bash
-
- ## By default, paths specified by CMake install will be used to locate OpenViBE components. If defined, these ENV variables can override the CMake defines.
- #export OV_PATH_ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
- #export OV_PATH_BIN="$OV_PATH_ROOT/bin"
- #export OV_PATH_LIB="$OV_PATH_ROOT/lib"
- #export OV_PATH_DATA="$OV_PATH_ROOT/share/openvibe"
- #export MENSIA_PATH_DATA="$OV_PATH_ROOT/share/mensia"
-
- # Tries to locate matlab executable from $PATH, and set the library path to the corresponding matlab libs.
- if [ "`which matlab`" != "" ] ; then
- MATLAB_ROOT=`matlab -e | grep "^MATLAB=" | sed -e "s/^MATLAB=//"`
- MATLAB_ARCH=`matlab -e | grep "^ARCH=" | sed -e "s/^ARCH=//"`
- MATLAB_LIBPATH="$MATLAB_ROOT/bin/$MATLAB_ARCH"
- # echo Matlab libs expected at $MATLAB_LIBPATH
- LD_LIBRARY_PATH="$MATLAB_LIBPATH:$LD_LIBRARY_PATH"
- fi
-
- if [ "$OV_PATH_BIN" == "" ]; then
- export OV_PATH_BIN="@CMAKE_INSTALL_FULL_BINDIR@"
- fi
- if [ "$OV_PATH_LIB" == "" ]; then
- export OV_PATH_LIB="@CMAKE_INSTALL_FULL_LIBDIR@"
- fi
- if [ "$OV_PATH_DATA" == "" ]; then
- export OV_PATH_DATA="@CMAKE_INSTALL_FULL_DATADIR@/openvibe"
- fi
- if [ "$MENSIA_PATH_DATA" == "" ]; then
- export MENSIA_PATH_DATA="@CMAKE_INSTALL_FULL_DATADIR@/mensia"
- fi
-
- export LD_LIBRARY_PATH="$OV_PATH_LIB:@CMAKE_SOURCE_DIR@/dependencies/lib:$LD_LIBRARY_PATH"
- export LC_ALL=C
-
- export LUA_CPATH="$OV_PATH_LIB/lib?.so;`echo 'print(package.cpath)' | lua - `"
- export LUA_PATH="$OV_PATH_BIN/?.lua;`echo 'print(package.path)' | lua - `"
-
- # The following line is there to help in cases where OpenViBE can consume excessive
- # amounts of CPU or grind the swap. You can remove it if you know what you're doing.
- renice 19 $$
-
- ov_debugger=
- if [ "$1" == "--debug" ]; then
- ov_debugger="gdb --args"
- shift
- fi
- ov_run_bg=0
- if [ "$1" == "--run-bg" ]; then
- ov_run_bg=1
- shift
- fi
-
- ret_code=0
-
- if [ $ov_run_bg == 0 ]; then
- eval $ov_debugger "$OV_PATH_BIN/@OV_CMD_EXECUTABLE@" @OV_CMD_ARGS@ $*
- ret_code=$?
- else
- $ov_debugger "$OV_PATH_BIN/@OV_CMD_EXECUTABLE@" @OV_CMD_ARGS@ $* &
- fi
-
- exit $ret_code
|