From 9d1feef989889b43dd788d0ef1d31073441b946e Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Wed, 15 Nov 2023 22:08:02 -0600 Subject: [PATCH] fixed: windows compilation, maybe --- build.bat | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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 ) -- 2.25.1