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.
22 lines
910 B
22 lines
910 B
2 years ago
|
package("sparsepp")
|
||
|
set_kind("library", {headeronly = true})
|
||
|
set_homepage("https://github.com/greg7mdp/sparsepp")
|
||
|
set_description("A fast, memory efficient hash map for C++")
|
||
|
|
||
|
add_urls("https://github.com/greg7mdp/sparsepp/archive/refs/tags/$(version).tar.gz",
|
||
|
"https://github.com/greg7mdp/sparsepp.git")
|
||
|
add_versions("1.22", "5516c814fe56c692aaa36f49e696f4a6292f04b5ae79f4ab7bd121e2cc48b917")
|
||
|
|
||
|
on_install("linux", "macosx", "bsd", "windows", "android", "iphoneos", "cross", "mingw", function (package)
|
||
|
os.cp("sparsepp/*.h", package:installdir("include/sparsepp"))
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:check_cxxsnippets({test = [[
|
||
|
void test() {
|
||
|
spp::sparse_hash_set<int> test;
|
||
|
test.clear();
|
||
|
}
|
||
|
]]}, {configs = {languages = "c++11"}, includes = {"sparsepp/spp.h"}}))
|
||
|
end)
|