mirror of https://github.com/emgucv/emgucv.git
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.
78 lines
848 B
78 lines
848 B
REM go to the folder of the current script
|
|
pushd %~p0
|
|
|
|
cd ..
|
|
|
|
cd eigen
|
|
git clean -d -f -x "."
|
|
cd ..
|
|
|
|
cd vtk
|
|
git clean -d -f -x "."
|
|
cd ..
|
|
|
|
cd 3rdParty
|
|
cd freetype2
|
|
git clean -d -f -x "."
|
|
cd ..
|
|
cd ..
|
|
|
|
cd harfbuzz
|
|
git clean -d -f -x "."
|
|
cd ..
|
|
|
|
cd hdf5
|
|
git clean -d -f -x "."
|
|
cd ..
|
|
|
|
cd opencv
|
|
git clean -d -f -x "."
|
|
cd ..
|
|
|
|
cd opencv_contrib
|
|
git clean -d -f -x "."
|
|
cd ..
|
|
|
|
cd opencv_extra
|
|
git clean -d -f -x "."
|
|
cd ..
|
|
|
|
cd Emgu.CV.Extern
|
|
|
|
cd tesseract
|
|
cd libtesseract
|
|
|
|
cd tesseract-ocr.git
|
|
git clean -d -f -x "."
|
|
cd ..
|
|
|
|
cd leptonica
|
|
cd leptonica.git
|
|
git clean -d -f -x "."
|
|
cd ..
|
|
cd ..
|
|
|
|
cd ..
|
|
cd ..
|
|
|
|
cd depthai-core
|
|
git clean -d -f -x "."
|
|
cd ..
|
|
|
|
cd ..
|
|
|
|
IF NOT "%1%"=="--keep_binary" GOTO CLEAN_ALL
|
|
|
|
:KEEP_BINARY
|
|
move libs opencv\
|
|
git clean -d -f -x "."
|
|
move opencv\libs .\
|
|
GOTO END_OF_CLEAN
|
|
|
|
:CLEAN_ALL
|
|
git clean -d -f -x "."
|
|
|
|
:END_OF_CLEAN
|
|
|
|
|
|
popd
|