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
1.1 KiB
30 lines
1.1 KiB
package("utfcpp") |
|
|
|
set_kind("library", {headeronly = true}) |
|
set_homepage("https://github.com/nemtrif/utfcpp") |
|
set_description("UTF8-CPP: UTF-8 with C++ in a Portable Way") |
|
set_license("BSL-1.0") |
|
|
|
add_urls("https://github.com/nemtrif/utfcpp/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/nemtrif/utfcpp.git") |
|
add_versions("v3.2.1", "8d6aa7d77ad0abb35bb6139cb9a33597ac4c5b33da6a004ae42429b8598c9605") |
|
|
|
add_extsources("apt::libutfcpp-dev", "pacman::utf8cpp") |
|
|
|
add_deps("cmake") |
|
on_install(function (package) |
|
local configs = {"-DUTF8_TESTS=OFF", "-DUTF8_INSTALL=ON", "-DUTF8_SAMPLES=OFF"} |
|
import("package.tools.cmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
#define UTF_CPP_CPLUSPLUS 201103L |
|
#include <utf8cpp/utf8.h> |
|
void test() { |
|
std::string line("你好,世界"); |
|
std::u16string u16line = utf8::utf8to16(line); |
|
std::string u8line = utf8::utf16to8(u16line); |
|
} |
|
]]}, {configs = {languages = "c++11"}})) |
|
end)
|
|
|