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.
43 lines
1.8 KiB
43 lines
1.8 KiB
package("easywsclient") |
|
set_homepage("https://github.com/dhbaird/easywsclient") |
|
set_description("A short and sweet WebSocket client for C++") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/dhbaird/easywsclient.git") |
|
add_versions("2021.01.12", "afc1d8cfc584e0f1f4a77e8c0ce3e979d9fe7ce2") |
|
add_patches("2021.01.12", path.join(os.scriptdir(), "patches", "2021.01.12", "add_cstdint.patch"), "babddf02e9eae42cc11e5458478f207837a402c425b31dafd2ef63a29b7d6744") |
|
add_patches("2021.01.12", path.join(os.scriptdir(), "patches", "2021.01.12", "move_import.patch"), "9265412268390cbfcb799f40324c3e255ae6fc01c292e749c131f1c3c19e32bd") |
|
|
|
if is_plat("mingw") then |
|
add_syslinks("ws2_32") |
|
end |
|
|
|
on_install(function (package) |
|
local configs = {} |
|
io.writefile("xmake.lua", [[ |
|
add_rules("mode.release", "mode.debug") |
|
target("easywsclient") |
|
set_kind("$(kind)") |
|
set_languages("cxx11") |
|
add_files("easywsclient.cpp") |
|
add_headerfiles("(easywsclient.hpp)") |
|
if is_plat("windows") then |
|
add_defines("_WIN32") |
|
end |
|
if is_plat("mingw") then |
|
add_syslinks("ws2_32") |
|
end |
|
]]) |
|
import("package.tools.xmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
#include <memory> |
|
#include "easywsclient.hpp" |
|
void test() { |
|
std::unique_ptr<easywsclient::WebSocket> ws(easywsclient::WebSocket::from_url("ws://echo.websocket.org")); |
|
ws->send("Hello World!"); |
|
} |
|
]]}), {configs = {languages = "cxx11"}}) |
|
end)
|
|
|