1234567891011121314151617181920212223242526272829303132333435363738 |
- package("fmtlog")
- set_homepage("https://github.com/MengRao/fmtlog")
- set_description("fmtlog is a performant fmtlib-style logging library with latency in nanoseconds.")
- set_license("MIT")
- add_urls("https://github.com/MengRao/fmtlog/archive/refs/tags/$(version).tar.gz",
- "https://github.com/MengRao/fmtlog.git")
- add_versions("v2.1.2", "d286184e04c3c3286417873dd2feac524c53babc6cd60f10179aa5b10416ead7")
- add_deps("cmake", "fmt")
- if is_plat("linux") then
- add_syslinks("pthread")
- end
- on_install("linux", "macosx", "windows", function (package)
- local configs = {}
- table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
- io.replace("CMakeLists.txt", "add_subdirectory(fmt)", "", {plain = true})
- io.replace("CMakeLists.txt", "add_subdirectory(test)", "", {plain = true})
- io.replace("CMakeLists.txt", "add_subdirectory(bench)", "", {plain = true})
- import("package.tools.cmake").install(package, configs, {packagedeps = "fmt"})
- if package:config("shared") then
- os.tryrm(path.join(package:installdir("lib"), "*.a"))
- else
- os.tryrm(path.join(package:installdir("lib"), "*.dll"))
- os.tryrm(path.join(package:installdir("lib"), "*.dylib"))
- os.tryrm(path.join(package:installdir("lib"), "*.so"))
- end
- os.cp("*.h", package:installdir("include/fmtlog"))
- end)
- on_test(function (package)
- assert(package:check_cxxsnippets({test = [[
- void test() {
- logi("A info msg");
- }
- ]]}, {configs = {languages = "c++17"}, includes = "fmtlog/fmtlog.h"}))
- end)
|