mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 01:18:36 +02:00
10 lines
268 B
Batchfile
10 lines
268 B
Batchfile
@setlocal
|
|
@echo off
|
|
|
|
call "%VCVARS64_2022%"
|
|
|
|
python.exe -m venv env || exit /b 1
|
|
call env\Scripts\Activate.bat || exit /b 1
|
|
python.exe -m pip install cibuildwheel || exit /b 1
|
|
python.exe -m cibuildwheel --output-dir wheelhouse --platform windows || exit /b 1
|