aboutsummaryrefslogtreecommitdiffstats
path: root/anime-face-detector/make.bat
diff options
context:
space:
mode:
Diffstat (limited to 'anime-face-detector/make.bat')
-rw-r--r--anime-face-detector/make.bat20
1 files changed, 20 insertions, 0 deletions
diff --git a/anime-face-detector/make.bat b/anime-face-detector/make.bat
new file mode 100644
index 0000000..b0d9bff
--- /dev/null
+++ b/anime-face-detector/make.bat
@@ -0,0 +1,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