fix(windows): ensure that SDL is at "SDL.h" instead of "SDL2/SDL.h"

This commit is contained in:
Rekai Nyangadzayi Musuka 2024-09-09 03:31:55 -05:00
parent 94894fadc6
commit 2d3c659b85
1 changed files with 5 additions and 1 deletions

View File

@ -19,13 +19,17 @@ if (!(Test-Path -PathType Leaf $ArchiveFile)) {
Expand-Archive $ArchiveFile
if (Test-Path -PathType Leaf .\SDL2) {
if (Test-Path -PathType Container .\SDL2) {
Remove-Item -Recurse .\SDL2
}
New-Item -Force -ItemType Directory -Path .\SDL2
Get-ChildItem -Path ".\SDL2-devel-mingw\SDL2-$SDL2Version\x86_64-w64-mingw32" | Move-Item -Destination .\SDL2
# #include <SDL.h>
Move-Item -Force -Path .\SDL2\include\SDL2\* -Destination .\SDL2\include
Remove-Item -Force .\SDL2\include\SDL2
New-Item -Force .\sdl.json -Value $Json
Remove-Item -Recurse .\SDL2-devel-mingw