From 022de6510e4203ea7067684f761166d943e185c7 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Fri, 1 Dec 2023 22:06:22 -0600 Subject: [PATCH] added: missing library from windows build command --- build.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.bat b/build.bat index 47e98a36..91357cd6 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 /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