From 70f9d9fa7d50cbeaa918da8f7b9a7c22709c406b Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Fri, 1 Dec 2023 22:13:40 -0600 Subject: [PATCH] fixed: spelling of `kernel32.lib` --- build.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.bat b/build.bat index 91357cd6..988ecadf 100644 --- a/build.bat +++ b/build.bat @@ -22,7 +22,7 @@ del *.ilk > NUL 2> NUL del *.obj > NUL 2> NUL del misc\icon_resource.res -cl /MT /std:c17 /TC /I compiler/include /I shared/include /D_USRDLL /D_WINDLL runtime\onyx_runtime.c /link /DLL ws2_32.lib bcrypt.lib Synchronization.lib Kernel32.lib /OUT:onyx_runtime.dll +cl /MT /std:c17 /TC /I compiler/include /I shared/include /D_USRDLL /D_WINDLL runtime\onyx_runtime.c /link /DLL ws2_32.lib bcrypt.lib Synchronization.lib kernel32.lib /OUT:onyx_runtime.dll del onyx_runtime.obj del onyx_runtime.lib -- 2.25.1