Improving command parsing semantics, gofmt, warn when command reported

This commit is contained in:
Krzosa Karol
2026-01-01 18:00:21 +01:00
parent dd7e2ff655
commit 505b2d0ffa
7 changed files with 39 additions and 21 deletions

View File

@@ -1,16 +1,16 @@
@echo off
if not exist "src\external\SDL" (
pushd src\external
git clone https://github.com/libsdl-org/SDL.git
pushd SDL
git checkout release-3.4.0
cmake -S . -B build_win32_static -DCMAKE_BUILD_TYPE=Release -DSDL_STATIC=ON
pushd build_win32_static
msbuild SDL3.sln
popd
popd
popd
pushd src\external
git clone https://github.com/libsdl-org/SDL.git
pushd SDL
git checkout release-3.4.0
cmake -S . -B build_win32_static -DCMAKE_BUILD_TYPE=Release -DSDL_STATIC=ON
pushd build_win32_static
msbuild SDL3.sln
popd
popd
popd
)
set sdl=..\src\external\SDL
set sdllib=%sdl%\build_win32_static\Debug