From: Brendan Hansen Date: Thu, 16 Nov 2023 04:08:02 +0000 (-0600) Subject: fixed: windows compilation, maybe X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=9d1feef989889b43dd788d0ef1d31073441b946e;p=onyx.git fixed: windows compilation, maybe --- diff --git a/build.bat b/build.bat index 05646677..adc2a0ad 100644 --- a/build.bat +++ b/build.bat @@ -30,12 +30,10 @@ del onyx_runtime.exp if "%1" == "dist" ( mkdir dist - mkdir dist\shared\lib\windows_x86_64\lib - copy shared\lib\windows_x86_64\lib\wasmer.dll dist\shared\lib\windows_x86_64\lib\wasmer.dll xcopy core dist\core /s /e /h /I xcopy examples dist\examples /s /e /h /I @REM xcopy misc dist\misc /s /e /h /I - xcopy onyx_runtime.dll dist\onyx_runtime.dll /s /e /h /I + copy onyx_runtime.dll dist\onyx_runtime.dll xcopy tests dist\tests /s /e /h /I - xcopy onyx.exe dist\onyx.exe /s /e /h /I + copy onyx.exe dist\onyx.exe )