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.
30 lines
1.1 KiB
30 lines
1.1 KiB
12 months ago
|
package("muduo")
|
||
|
set_homepage("https://github.com/chenshuo/muduo")
|
||
|
set_description("Event-driven network library for multi-threaded Linux server in C++11")
|
||
|
|
||
|
add_urls("https://github.com/chenshuo/muduo.git")
|
||
|
add_versions("2022.11.01", "f29ca0ebc2f3b0ab61c1be08482a5524334c3d6f")
|
||
|
|
||
|
add_deps("cmake")
|
||
|
add_deps("boost")
|
||
|
|
||
|
on_install("linux", function (package)
|
||
|
package:add("links", "muduo_net", "muduo_base")
|
||
|
io.replace("CMakeLists.txt", "-Wold-style-cast", "", {plain = true})
|
||
|
local configs ={"-DMUDUO_BUILD_EXAMPLES=OFF"}
|
||
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
|
||
|
if package:is_arch("i386") then
|
||
|
table.insert(configs, "-DCMAKE_BUILD_BITS=32")
|
||
|
end
|
||
|
import("package.tools.cmake").install(package, configs)
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:check_cxxsnippets({test = [[
|
||
|
#include "muduo/net/EventLoop.h"
|
||
|
void test() {
|
||
|
muduo::net::EventLoop loop;
|
||
|
}
|
||
|
]]}))
|
||
|
end)
|