Difficult-Rocket/build_rs.ps1
2023-02-12 12:26:18 +08:00

27 lines
486 B
PowerShell

Set-Location .\libs\Difficult_Rocket_rs\src
Write-Output $args[0]
$do = 0
if ("38" -notin $args -and "39" -notin $args -and "310" -notin $args -and "311" -notin $args) {
$do = 1
}
if ($do -or "38" -in $args) {
python3.8 setup.py build
}
if ($do -or "39" -in $args) {
python3.9 setup.py build
}
if ($do -or "310" -in $args) {
python3.10 setup.py build
}
if ($do -or "311" -in $args) {
python3.11 setup.py build
}
python3.8 after_build.py
Set-Location ..\..\..\