From c6829ab1ee71bd9e58cc4c35378bdb2b232682ac Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Thu, 10 Nov 2022 06:58:12 -0800 Subject: [PATCH] Copy SDL2 --- .gitignore | 1 + bin/build.bat | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 6e7e9ae7..e4334d83 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .DS_Store +SDL2.dll *.lst *.o *.vcxproj.user diff --git a/bin/build.bat b/bin/build.bat index a887c62e..15ae08cd 100644 --- a/bin/build.bat +++ b/bin/build.bat @@ -25,6 +25,9 @@ call extern\llvm_build.bat @GOTO HADERROR :LLD_HAS +copy BeefLibs\SDL2\dist\SDL2.dll +@IF %ERRORLEVEL% NEQ 0 GOTO HADERROR + CALL bin/msbuild.bat BeefySysLib\BeefySysLib.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:SolutionDir=%cd%\ /v:m %MSBUILD_FLAGS% @IF %ERRORLEVEL% NEQ 0 GOTO HADERROR