package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
969 B
30 lines
969 B
3 years ago
|
package("mio")
|
||
|
|
||
|
set_kind("library", {headeronly = true})
|
||
|
set_homepage("https://github.com/mandreyel/mio")
|
||
|
set_description("Cross-platform C++11 header-only library for memory mapped file IO")
|
||
|
set_license("MIT")
|
||
|
|
||
|
add_urls("https://github.com/mandreyel/mio.git")
|
||
|
add_versions("2021.9.21", "3f86a95c0784d73ce6815237ec33ed25f233b643")
|
||
|
|
||
|
add_deps("cmake")
|
||
|
on_install("linux", "macosx", "bsd", "iphoneos", "android", function (package)
|
||
|
import("package.tools.cmake").install(package, {"-Dmio.tests=OFF"})
|
||
|
end)
|
||
|
|
||
|
on_test(function(package)
|
||
|
assert(package:check_cxxsnippets({
|
||
|
test = [[
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
#include <algorithm>
|
||
|
#include <mio/mmap.hpp>
|
||
|
|
||
|
static void test() {
|
||
|
mio::mmap_source mmap(0, 0, mio::map_entire_file);
|
||
|
}
|
||
|
]]
|
||
|
}, {configs = {languages = "c++11"}}))
|
||
|
end)
|