initial scripts

This commit is contained in:
ed
2025-02-01 12:50:25 -05:00
parent 40c21ca555
commit 1d0045b759
6 changed files with 765 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# This is meant to be used with build.ps1, and is not a standalone script.
$target_arch = Join-Path $PSScriptRoot 'target_arch.psm1'
import-module $target_arch
if ($IsWindows) {
# This HandmadeHero implementation is only designed for 64-bit systems
& $devshell -arch amd64
}
if ( $vendor -eq $null ) {
write-host "No vendor specified, assuming clang available"
$vendor = "clang"
}