Skip to content

Commit

Permalink
fix ssl support fox asio2 (#5198)
Browse files Browse the repository at this point in the history
* fix ssl support fox asio2

* Update xmake.lua

* Update xmake.lua

* Update xmake.lua

* Update xmake.lua

---------

Co-authored-by: star9029 <[email protected]>
  • Loading branch information
heheda123123 and star-hengxing authored Sep 10, 2024
1 parent 278d5d2 commit a34951d
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion packages/a/asio2/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,24 @@ package("asio2")

add_versions("v2.9", "d173e83a22f6d4ec8697ac533f4cf71051b7aa5c550d24997d991610206dd534")

add_configs("ssl", {description = "Build OpenSSL module", default = false, type = "boolean"})

add_patches("2.9", "patches/2.9/remove-const.patch", "6326f333ab2d0484c23bb3cd9cfd5a565030b5525d083677565a693f5f8803b6")

add_deps("asio", "cereal", "openssl3")
add_deps("asio", "cereal")
add_deps("spdlog", { configs = { header_only = false, fmt_external = true } })

if is_plat("windows", "mingw") then
add_syslinks("ws2_32")
end

on_load(function (package)
if package:config("ssl") then
package:add("deps", "openssl3")
package:add("defines", "ASIO2_ENABLE_SSL")
end
end)

on_install("windows", "linux", "macosx", "mingw", "bsd", "cross", function (package)
os.cp("include/*", package:installdir("include"))
end)
Expand Down

0 comments on commit a34951d

Please sign in to comment.