Skip to content

Commit

Permalink
support win 32 bit
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelBlend committed Mar 2, 2019
1 parent 410d782 commit 40563fc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions sources/setup.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,32 @@ del core.html
del core.c
rd /s /q build

del core_35_64.pyd
"C:\Program Project\Python 3.5.4 64 bit\python.exe" setup.py build_ext --inplace
del core.html
del core.c
rd /s /q build
ren core_35_64.cp35-win_amd64.pyd core_35_64.pyd

del core_37_64.pyd
"C:\Program Project\Python 3.7.2 64 bit\python.exe" setup.py build_ext --inplace
del core.html
del core.c
rd /s /q build
ren core_37_64.cp37-win_amd64.pyd core_37_64.pyd

del core_35_32.pyd
"C:\Program Project\Python 3.5.4 32 bit\python.exe" setup.py build_ext --inplace
del core.html
del core.c
rd /s /q build
ren core_35_32.cp35-win_amd32.pyd core_35_32.pyd
ren core_35_32.cp35-win32.pyd core_35_32.pyd

del core_37_32.pyd
"C:\Program Project\Python 3.7.2 32 bit\python.exe" setup.py build_ext --inplace
del core.html
del core.c
rd /s /q build
ren core_37_32.cp37-win_amd32.pyd core_37_32.pyd
ren core_37_32.cp37-win32.pyd core_37_32.pyd

pause

0 comments on commit 40563fc

Please sign in to comment.