package("websocketpp") set_kind("library", {headeronly = true}) set_homepage("http://www.zaphoyd.com/websocketpp") set_description("C++ websocket client/server library") add_urls("https://github.com/zaphoyd/websocketpp/archive/refs/tags/$(version).tar.gz", "https://github.com/zaphoyd/websocketpp.git") add_versions("0.8.2", "6ce889d85ecdc2d8fa07408d6787e7352510750daa66b5ad44aacb47bea76755") add_configs("asio_standalone", {description = "Use standalone asio", default = true, type = "boolean"}) add_deps("cmake") on_load(function (package) if package:config("asio_standalone") then package:add("defines", "ASIO_STANDALONE", "_WEBSOCKETPP_CPP11_STL_") package:add("deps", "asio 1.32.0") package:add("deps", "boost", {configs = {system = true, regex = true, thread = true, type_traits = true}}) else package:add("deps", "boost", {configs = {system = true, asio = true, regex = true, thread = true}}) -- Compatibility fixes for Boost 1.87 Reference to PR https://github.com/zaphoyd/websocketpp/pull/1164 package:add("patches", "0.8.2", [[https://github.com/zaphoyd/websocketpp/compare/0.8.2%2E%2E%2Eamini-allight%3Awebsocketpp%3Adevelop.diff]], "5396d10ebe593f031580b3c3683f205a8d4c57f2d0942d48c5a4b74e64365f97") end end) on_install("!wasm", function (package) local configs = {"-DCMAKE_POLICY_DEFAULT_CMP0057=NEW"} 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 = [[ #include #include typedef websocketpp::server server; void test() { server echo_server; } ]]}, {configs = {languages = "c++17"}})) end)