-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversions.bat
58 lines (54 loc) · 1.42 KB
/
versions.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
echo off
echo Deleting cpp and pyd files in Pygameshader directory prior installation
cd PygameShader
del *.cpp
del *.pyd
cd ..
echo Building PygameShader with python ver %python3_6%
call %python3_6% setup.py build_ext --inplace
call %python3_6% setup.py bdist_wheel
echo Cleaning up last build
cd PygameShader
del *.cpp
del *.pyd
cd ..
echo Building PygameShader with python ver %python3_7%
call %python3_7% setup.py build_ext --inplace
call %python3_7% setup.py bdist_wheel
echo Cleaning up last build
cd PygameShader
del *.cpp
del *.pyd
cd ..
echo Building PygameShader with python ver %python3_8%
call %python3_8% setup.py build_ext --inplace
call %python3_8% setup.py bdist_wheel
echo Cleaning up last build
cd PygameShader
del *.cpp
del *.pyd
cd ..
echo Building PygameShader with python ver %python3_9%
call %python3_9% setup.py build_ext --inplace
call %python3_9% setup.py bdist_wheel
echo Cleaning up last build
cd PygameShader
del *.cpp
del *.pyd
cd ..
echo Building PygameShader with python ver %python3_10%
call %python3_10% setup.py build_ext --inplace
call %python3_10% setup.py bdist_wheel
echo Cleaning up last build
cd PygameShader
del *.cpp
del *.pyd
cd ..
echo Building PygameShader with python ver %python3_11%
call %python3_11% setup.py build_ext --inplace
call %python3_11% setup.py sdist bdist_wheel
echo Cleaning up last build
cd PygameShader
del *.cpp
del *.pyd
cd ..