From bf858378f049072b35d7936364f5d10423eef37b Mon Sep 17 00:00:00 2001 From: Alexander Frick Date: Mon, 8 Dec 2025 23:17:34 -0600 Subject: [PATCH] set minimum subsystem version to windows 2000 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8af058f..b7ff06c 100644 --- a/Makefile +++ b/Makefile @@ -48,7 +48,7 @@ CXXFLAGS := $(CFLAGS) -std=c++17 -static-libstdc++ # Libraries LIBS := -lkernel32 -luser32 -lcomctl32 -lcomdlg32 -lshell32 -lgdi32 -ladvapi32 -lole32 -loleaut32 -luuid -lodbc32 -lodbccp32 -lversion # Linker flags -LDFLAGS := $(LIBS) -static -municode -Wl,--subsystem,windows +LDFLAGS := $(LIBS) -static -municode -Wl,--subsystem,windows:5.00 # Include generated dependency files -include $(OBJ_C:.o=.d)