Drafting up scripts (not tested)

This commit is contained in:
2024-06-30 20:41:50 -04:00
parent b7a5a89e16
commit f6a3f50fa1
7 changed files with 328 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
$devshell = Join-Path $PSScriptRoot 'devshell.ps1'
& $devshell -arch amd64
$path_root = git rev-parse --show-toplevel
$path_backend = join-path $path_backend 'backend'
$path_binaries = join-path $path_bin 'binaries'
$path_scripts = join-path $path_root 'scripts'
$path_thirdparty = join-path $path_root 'thirdparty'
$path_sokol = Join-Path $path_thirdparty 'sokol'
if (test-path $path_sokol)
{
Move-Item -Path "$path_sokol/sokol/*" -Destination $path_sokol -Force
Remove-Item -Path $path_sokol -Recurse -Force
Remove-Item -Path $path_sokol_examples -Recurse -Force
}
& '.\build_clibs_windows.cmd'