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.
44 lines
2.1 KiB
44 lines
2.1 KiB
package("log4cplus") |
|
|
|
set_homepage("https://sourceforge.net/projects/log4cplus/") |
|
set_description("log4cplus is a simple to use C++ logging API providing thread-safe, flexible, and arbitrarily granular control over log management and configuration.") |
|
set_license("BSD-2-Clause") |
|
|
|
add_urls("https://github.com/log4cplus/log4cplus/releases/download/REL_$(version).tar.gz", {version = function (version) return version:gsub("%.", "_") .. "/log4cplus-" .. version end}) |
|
add_versions("2.0.6", "5fb26433b0f200ebfc2e6effb7e2e5131185862a2ea9a621a8e7f3f725a72b08") |
|
add_versions("2.0.7", "086451c7e7c582862cbd6c60d87bb6d9d63c4b65321dba85fa71766382f7ec6d") |
|
|
|
add_configs("unicode", {description = "Use unicode charset.", default = true, type = "boolean"}) |
|
|
|
add_deps("cmake") |
|
if is_plat("windows") then |
|
add_syslinks("advapi32", "ws2_32") |
|
elseif is_plat("linux") then |
|
add_syslinks("pthread") |
|
end |
|
|
|
on_load("windows", "linux", "macosx", function (package) |
|
if package:config("unicode") then |
|
package:add("defines", "UNICODE") |
|
end |
|
end) |
|
|
|
on_install("windows", "linux", "macosx", function (package) |
|
local configs = {"-DLOG4CPLUS_BUILD_TESTING=OFF"} |
|
table.insert(configs, "-DUNICODE=" .. (package:config("unicode") and "ON" or "OFF")) |
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release")) |
|
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF")) |
|
import("package.tools.cmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
void test() { |
|
log4cplus::Initializer initializer; |
|
log4cplus::BasicConfigurator config; |
|
config.configure(); |
|
log4cplus::Logger logger = log4cplus::Logger::getInstance(LOG4CPLUS_TEXT("main")); |
|
LOG4CPLUS_WARN(logger, LOG4CPLUS_TEXT("Hello, World!")); |
|
} |
|
]]}, {configs = {languages = "c++17"}, includes = "log4cplus/log4cplus.h"})) |
|
end)
|
|
|