VKDoom-ize the auto-build scripts

This commit is contained in:
nashmuhandes 2024-03-10 03:55:06 +08:00
commit 85cacd99b9
3 changed files with 3 additions and 3 deletions

View file

@ -96,7 +96,7 @@ make -j $(nproc); rc=$?
# -- If successful, show the build
if [ $rc -eq 0 ]; then
if [ -f gzdoom ]; then
if [ -f vkdoom ]; then
xdg-open .
fi
fi

View file

@ -82,7 +82,7 @@ cmake -A ARM64 -S .. -B . ^
cmake --build . --config RelWithDebInfo -- -maxcpucount -verbosity:minimal
rem -- If successful, show the build
if exist RelWithDebInfo\gzdoom.exe explorer.exe RelWithDebInfo
if exist RelWithDebInfo\vkdoom.exe explorer.exe RelWithDebInfo
goto :eof
:nobuild

View file

@ -78,5 +78,5 @@ cmake -A x64 -S .. -B . ^
cmake --build . --config RelWithDebInfo -- -maxcpucount -verbosity:minimal
rem -- If successful, show the build
if not errorlevel 1 if exist RelWithDebInfo\gzdoom.exe explorer.exe RelWithDebInfo
if not errorlevel 1 if exist RelWithDebInfo\vkdoom.exe explorer.exe RelWithDebInfo