fix(PS3): SPU Tasks not being built

This commit is contained in:
2026-08-02 20:47:50 -04:00
parent bd6eca9d44
commit eb80f3e52b
32 changed files with 206 additions and 48 deletions
@@ -0,0 +1,15 @@
# str1k3r - This prebuild makes sure that the ObjFiles directory exists so the PS3 SPU tasks can properly build
param(
[string]$ProjectDir,
[string]$Configuration
)
$ParentDir = Split-Path -Path $ProjectDir -Parent
$directories = @(
"ObjFiles\$Configuration"
)
foreach ($dir in $directories) {
New-Item -ItemType Directory -Path (Join-Path $ParentDir $dir) -Force | Out-Null
}