Add package cpp-linenoise (#2416)

pull/2358/head
Yiheng Wu 1 year ago committed by GitHub
parent f48ab4b6ac
commit c83a462b8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      packages/c/cpp-linenoise/xmake.lua

@ -0,0 +1,20 @@
package("cpp-linenoise")
set_kind("library", {headeronly = true})
set_homepage("https://github.com/yhirose/cpp-linenoise")
set_description("A single file multi-platform (Unix, Windows) C++ header-only linenoise-based readline library.")
set_license("BSD-2-Clause")
add_urls("https://github.com/yhirose/cpp-linenoise.git")
add_versions("2021.11.05", "4cd89adfbc07cedada1aa32be12991828919d91b")
on_install(function (package)
os.cp("linenoise.hpp", package:installdir("include"))
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
void test() {
linenoise::SetMultiLine(true);
}
]]}, {includes = {"linenoise.hpp"}}))
end)
Loading…
Cancel
Save