Commit 0a23c1bf authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #12614 from alalek:winpack_samples_python_launcher_update

parents d5d19a9f ecef7f79
@echo off @echo off
if NOT exist %CD%\..\..\..\build ( setlocal enableDelayedExpansion
set SCRIPTDIR=%~dp0
if NOT exist %SCRIPTDIR%\..\..\..\build (
echo ERROR: OpenCV Winpack installation is required echo ERROR: OpenCV Winpack installation is required
pause pause
exit exit
) )
:: Path to FFMPEG binary files :: Path to FFMPEG binary files
set PATH=%PATH%;%CD%\..\..\..\build\bin\ set PATH=%PATH%;%SCRIPTDIR%\..\..\..\build\bin\
:: Detect Python binary :: Detect Python binary
python -V python -V
...@@ -43,5 +46,17 @@ if %ERRORLEVEL% EQU 32 ( ...@@ -43,5 +46,17 @@ if %ERRORLEVEL% EQU 32 (
) )
) )
:: Launch demo :: Don't generate unnecessary .pyc cache files
set PYTHONDONTWRITEBYTECODE=1
if [%1]==[] goto rundemo
%PYTHON% %*
set result=%errorlevel%
IF %result% NEQ 0 (pause)
EXIT /B %result%
:rundemo
%PYTHON% demo.py %PYTHON% demo.py
set result=%errorlevel%
IF %result% NEQ 0 (pause)
EXIT /B %result%
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment