| 123456789101112131415161718192021222324252627282930 |
- package("termcolor")
- set_kind("library", { headeronly = true })
- set_homepage("https://github.com/ikalnytskyi/termcolor")
- set_description("Termcolor is a header-only C++ library for printing colored messages to the terminal. Written just for fun with a help of the Force.")
- set_license("BSD-3-Clause")
- add_urls("https://github.com/ikalnytskyi/termcolor/archive/refs/tags/$(version).tar.gz",
- "https://github.com/ikalnytskyi/termcolor.git")
- add_versions("v2.1.0", "435994c32557674469404cb1527c283fdcf45746f7df75fd2996bb200d6a759f")
- add_deps("cmake")
- on_install(function (package)
- io.replace("include/termcolor/termcolor.hpp", "#define TERMCOLOR_HPP_", "#define TERMCOLOR_HPP_\n#include <cstdint>", {plain = true})
- local configs = {"-DCMAKE_POLICY_DEFAULT_CMP0057=NEW"}
- table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
- import("package.tools.cmake").install(package, configs)
- end)
- on_test(function(package)
- assert(package:check_cxxsnippets({ test = [[
- void test() {
- std::cout << termcolor::red
- << "Hello World!"
- << termcolor::reset;
- }
- ]] }, { includes = "termcolor/termcolor.hpp" }))
- end)
|