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.
27 lines
1.0 KiB
27 lines
1.0 KiB
package("base-n") |
|
set_kind("library", {headeronly = true}) |
|
set_homepage("https://github.com/azawadzki/base-n") |
|
set_description("A small, single-header library which provides standard Base16, Base32, Base64, and custom Base-N encoding support.") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/azawadzki/base-n.git") |
|
add_versions("2020.05.28", "7573e77c0b9b0e8a5fb63d96dbde212c921993b4") |
|
|
|
on_install(function (package) |
|
os.cp("include/basen.hpp", package:installdir("include")) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
#include <string> |
|
#include <iostream> |
|
#include <basen.hpp> |
|
|
|
void test () { |
|
std::string in = "test"; |
|
std::string encoded; |
|
bn::encode_b64(in.begin(), in.end(), back_inserter(encoded)); |
|
std::cout << encoded << std::endl; |
|
} |
|
]]}, {configs = {languages = "c++11"}, includes = "basen.hpp"})) |
|
end)
|
|
|