mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
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.
20 lines
734 B
20 lines
734 B
#!/bin/bash |
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" |
|
|
|
[[ ! "${OPENCV_QUIET}" ]] && ( echo "Setting vars for OpenCV @OPENCV_VERSION@" ) |
|
export DYLD_LIBRARY_PATH="$SCRIPT_DIR/@OPENCV_LIB_RUNTIME_DIR_RELATIVE_CMAKECONFIG@:$DYLD_LIBRARY_PATH" |
|
|
|
if [[ ! "$OPENCV_SKIP_PYTHON" ]]; then |
|
PYTHONPATH_OPENCV="$SCRIPT_DIR/@OPENCV_PYTHON_DIR_RELATIVE_CMAKECONFIG@" |
|
[[ ! "${OPENCV_QUIET}" ]] && ( echo "Append PYTHONPATH: ${PYTHONPATH_OPENCV}" ) |
|
export PYTHONPATH="${PYTHONPATH_OPENCV}:$PYTHONPATH" |
|
fi |
|
|
|
# Don't exec in "sourced" mode |
|
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then |
|
if [[ $# -ne 0 ]]; then |
|
[[ ! "${OPENCV_QUIET}" && "${OPENCV_VERBOSE}" ]] && ( echo "Executing: $*" ) |
|
exec "$@" |
|
fi |
|
fi
|
|
|