From a40bd88d31b6b9ef5c8b52b51e8b79bed1e0b4b0 Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Thu, 16 Apr 2026 16:32:33 -0400 Subject: [PATCH] Fixes from Linux. --- Makefile | 10 +++++----- scripts/reset_build.sh | 0 2 files changed, 5 insertions(+), 5 deletions(-) mode change 100644 => 100755 scripts/reset_build.sh diff --git a/Makefile b/Makefile index 25e7197..286a2d4 100644 --- a/Makefile +++ b/Makefile @@ -25,17 +25,17 @@ test: build run: build test ifeq '$(OS)' 'Windows_NT' - powershell "cp ./builddir/sfmldemo.exe ." - ./sfmldemo + powershell "cp ./builddir/demo.exe ." + ./demo else - ./builddir/sfmldemo + ./builddir/demo endif debug: build - gdb --nx -x .gdbinit --ex run --args builddir/sfmldemo + gdb --nx -x .gdbinit --ex run --args builddir/demo debug_run: build - gdb --nx -x .gdbinit --batch --ex run --ex bt --ex q --args builddir/sfmldemo + gdb --nx -x .gdbinit --batch --ex run --ex bt --ex q --args builddir/demo clean: meson compile --clean -C builddir diff --git a/scripts/reset_build.sh b/scripts/reset_build.sh old mode 100644 new mode 100755