From 85cacd99b9d4f0870093a1abd3cc75106f1f220d Mon Sep 17 00:00:00 2001 From: nashmuhandes Date: Sun, 10 Mar 2024 03:55:06 +0800 Subject: [PATCH] VKDoom-ize the auto-build scripts --- auto-setup-linux.sh | 2 +- auto-setup-windows-arm.cmd | 2 +- auto-setup-windows.cmd | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/auto-setup-linux.sh b/auto-setup-linux.sh index a54677478..c6c09cbf5 100755 --- a/auto-setup-linux.sh +++ b/auto-setup-linux.sh @@ -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 diff --git a/auto-setup-windows-arm.cmd b/auto-setup-windows-arm.cmd index efefa157c..01c9b13d8 100644 --- a/auto-setup-windows-arm.cmd +++ b/auto-setup-windows-arm.cmd @@ -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 diff --git a/auto-setup-windows.cmd b/auto-setup-windows.cmd index 38a16d8d7..845dc1710 100644 --- a/auto-setup-windows.cmd +++ b/auto-setup-windows.cmd @@ -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