Skip to content

Commit

Permalink
clean up build cache
Browse files Browse the repository at this point in the history
  • Loading branch information
h-vetinari committed Jun 26, 2023
1 parent 79c3a1d commit 3c490a4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions recipe/build-py.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ cmake -G "Ninja" \

cmake --build .

# debug
ls -R .

# run actual build
cmake -G "Ninja" \
-DOPENCV_PYTHON_PIP_METADATA_INSTALL=ON \
Expand Down
3 changes: 3 additions & 0 deletions recipe/install-lib.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@
cd build
cmake --install .
if %ERRORLEVEL% neq 0 exit 1

cd ..
rmdir /s /q build
3 changes: 3 additions & 0 deletions recipe/install-lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ set -ex

cd build
cmake --install .

cd ..
rm -rf build

0 comments on commit 3c490a4

Please sign in to comment.