Skip to content

Commit

Permalink
barkeep: add package (#5633)
Browse files Browse the repository at this point in the history
* barkeep: add package

* enable fmt for old compiler
  • Loading branch information
star-hengxing authored Oct 31, 2024
1 parent f6892cd commit 69865bd
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions packages/b/barkeep/xmake.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
package("barkeep")
set_kind("library", {headeronly = true})
set_homepage("https://oir.github.io/barkeep/")
set_description("Small C++ header to display async animations, counters, and progress bars")
set_license("Apache-2.0")

add_urls("https://github.com/oir/barkeep/archive/refs/tags/$(version).tar.gz",
"https://github.com/oir/barkeep.git")

add_versions("v0.1.3", "211425e348b570547b49d11edfb6e3750701d97cc89f073771b16d6012530a66")

add_configs("fmt", {description = "Use fmt format", default = true, type = "boolean"})

if is_plat("linux", "bsd") then
add_syslinks("pthread")
end

on_load(function (package)
if package:config("fmt") then
package:add("deps", "fmt")
package:add("defines", "BARKEEP_ENABLE_FMT_FORMAT")
else
package:add("defines", "BARKEEP_ENABLE_STD_FORMAT")
end
end)

on_install(function (package)
if package:has_tool("cxx", "cl") then
package:add("cxxflags", "/utf-8")
end

os.cp("barkeep", package:installdir("include"))
end)

on_test(function (package)
assert(package:check_cxxsnippets({test = [[
void test() {
auto anim = barkeep::Animation({.message = "Working"});
}
]]}, {configs = {languages = "c++20"}, includes = {"barkeep/barkeep.h"}}))
end)

0 comments on commit 69865bd

Please sign in to comment.