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.
44 lines
1.8 KiB
44 lines
1.8 KiB
package("parallel-hashmap") |
|
|
|
set_kind("library", {headeronly = true}) |
|
set_homepage("https://greg7mdp.github.io/parallel-hashmap/") |
|
set_description("A family of header-only, very fast and memory-friendly hashmap and btree containers.") |
|
set_license("Apache-2.0") |
|
|
|
add_urls("https://github.com/greg7mdp/parallel-hashmap/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/greg7mdp/parallel-hashmap.git") |
|
add_versions("1.35", "308ab6f92e4c6f49304562e352890cf7140de85ce723c097e74fbdec88e0e1ce") |
|
add_versions("1.34", "da4939f5948229abe58acc833b111862411d45669310239b8a163bb73d0197aa") |
|
add_versions("1.33", "f6e4d0508c4d935fa25dcbaec63fbe0d7503435797e275ec109e8a3f1462a4cd") |
|
|
|
add_deps("cmake") |
|
on_install(function (package) |
|
local configs = { |
|
"-DPHMAP_BUILD_TESTS=OFF", |
|
"-DPHMAP_BUILD_EXAMPLES=OFF", |
|
} |
|
import("package.tools.cmake").install(package, configs) |
|
end) |
|
|
|
on_test(function(package) |
|
assert(package:check_cxxsnippets({ |
|
test = [[ |
|
#include <iostream> |
|
#include <string> |
|
#include <parallel_hashmap/phmap.h> |
|
|
|
using phmap::flat_hash_map; |
|
static void test() { |
|
flat_hash_map<std::string, std::string> email = { |
|
{ "tom", "tom@gmail.com"}, |
|
{ "jeff", "jk@gmail.com"}, |
|
{ "jim", "jimg@microsoft.com"} |
|
}; |
|
for (const auto& n : email) |
|
std::cout << n.first << "'s email is: " << n.second << "\n"; |
|
email["bill"] = "bg@whatever.com"; |
|
std::cout << "bill's email is: " << email["bill"] << "\n"; |
|
} |
|
]] |
|
}, {configs = {languages = "c++11"}})) |
|
end)
|
|
|