From 1f4cd5ed4f21538e38f8a4644bfe56dc055fd147 Mon Sep 17 00:00:00 2001 From: Bai Miao <68489543+ChrisCatCP@users.noreply.github.com> Date: Wed, 3 Jan 2024 15:03:10 +0800 Subject: [PATCH] mio: add plat windows and update version (#3034) --- packages/m/mio/xmake.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/m/mio/xmake.lua b/packages/m/mio/xmake.lua index ed8c35295..d40e1c0ce 100644 --- a/packages/m/mio/xmake.lua +++ b/packages/m/mio/xmake.lua @@ -7,9 +7,10 @@ package("mio") add_urls("https://github.com/mandreyel/mio.git") add_versions("2021.9.21", "3f86a95c0784d73ce6815237ec33ed25f233b643") + add_versions("2023.3.3", "8b6b7d878c89e81614d05edca7936de41ccdd2da") add_deps("cmake") - on_install("linux", "macosx", "bsd", "iphoneos", "android", function (package) + on_install("windows", "linux", "macosx", "bsd", "iphoneos", "android", function (package) import("package.tools.cmake").install(package, {"-Dmio.tests=OFF"}) end) @@ -22,7 +23,7 @@ package("mio") #include static void test() { - mio::mmap_source mmap(0, 0, mio::map_entire_file); + mio::mmap_source mmap(mio::invalid_handle, 0, mio::map_entire_file); } ]] }, {configs = {languages = "c++11"}}))