aboutsummaryrefslogtreecommitdiffstats
path: root/anime-face-detector/make.bat
blob: b0d9bff286a8a2418b46ab77980cca7f47c0a3ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@echo off
if /i "%1" == "clean" goto clean
goto all

:all
python setup.py build_ext --inplace
rd /s /q build

goto exit



:clean
del /f /s /q *.cpp
del /f /s /q *.c
del /f /s /q *.pyd

goto exit

:exit