From d475a451a35198a2e128f0f0c1221b4c209c0644 Mon Sep 17 00:00:00 2001 From: rhuibertsjr Date: Thu, 25 Apr 2024 19:34:37 +0200 Subject: [PATCH] Added: Win32 libraries --- build.bat | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.bat b/build.bat index 549c7c1..ebf9b4b 100644 --- a/build.bat +++ b/build.bat @@ -6,6 +6,8 @@ if not exist ".\build" mkdir ".\build" pushd .\build -cl /Zi ..\src\main.c /Feapp.exe /Od /nologo +set link= user32.lib + +cl /Zi /W4 ..\src\main.c /Feapp.exe /Od /nologo /link %link% popd .\build