fixed: windows compilation, maybe
authorBrendan Hansen <brendan.f.hansen@gmail.com>
Thu, 16 Nov 2023 04:08:02 +0000 (22:08 -0600)
committerBrendan Hansen <brendan.f.hansen@gmail.com>
Thu, 16 Nov 2023 04:08:02 +0000 (22:08 -0600)
build.bat

index 056466771f8feb1248123bbe161ccf034e52c326..adc2a0ad354c6cfa60b59932bc21a91f5402b48e 100644 (file)
--- 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
 )