mio: add plat windows and update version (#3034)

pull/3035/head
Bai Miao 11 months ago committed by GitHub
parent 6b6aae04d4
commit 1f4cd5ed4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      packages/m/mio/xmake.lua

@ -7,9 +7,10 @@ package("mio")
add_urls("https://github.com/mandreyel/mio.git") add_urls("https://github.com/mandreyel/mio.git")
add_versions("2021.9.21", "3f86a95c0784d73ce6815237ec33ed25f233b643") add_versions("2021.9.21", "3f86a95c0784d73ce6815237ec33ed25f233b643")
add_versions("2023.3.3", "8b6b7d878c89e81614d05edca7936de41ccdd2da")
add_deps("cmake") 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"}) import("package.tools.cmake").install(package, {"-Dmio.tests=OFF"})
end) end)
@ -22,7 +23,7 @@ package("mio")
#include <mio/mmap.hpp> #include <mio/mmap.hpp>
static void test() { 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"}})) }, {configs = {languages = "c++11"}}))

Loading…
Cancel
Save