Made ease of use scripts for building and cleaning

This commit is contained in:
ed
2024-02-09 17:50:42 -05:00
parent 932db741fa
commit 76ce8a79c2
3 changed files with 54 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
Clear-Host
$path_root = git rev-parse --show-toplevel
if ($IsWindows) {
$devshell = Join-Path $path_root 'scripts/helpers/devshell.ps1'
# This HandmadeHero implementation is only designed for 64-bit systems
& $devshell -arch amd64
}
Push-Location $path_root
$build_bat = Join-Path $path_root 'build.bat'
& $build_bat @args
Pop-Location