Skip to content

Commit

Permalink
pcapplusplus: add linux support and fix linkorders (#5367)
Browse files Browse the repository at this point in the history
* pcapplusplus: add linux support and fix linkorders

* use add_links() to simplify setting linkorder

* Update xmake.lua

* redundant white space

---------

Co-authored-by: star9029 <[email protected]>
Co-authored-by: c8ef <[email protected]>
  • Loading branch information
3 people authored Sep 28, 2024
1 parent cd7b705 commit dbf3267
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions packages/p/pcapplusplus/xmake.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package("pcapplusplus")
set_homepage("https://github.com/seladb/PcapPlusPlus")
set_description("PcapPlusPlus is a multiplatform C++ library for capturing, parsing and crafting of network packets.")
set_license("Unlicense")

set_urls("https://github.com/seladb/PcapPlusPlus/archive/refs/tags/$(version).zip",
"https://github.com/seladb/PcapPlusPlus.git")
Expand All @@ -10,16 +11,24 @@ package("pcapplusplus")

add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true})

add_deps("cmake")
add_links("Pcap++", "Packet++", "Common++")

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

add_deps("cmake")
if is_plat("windows") then
add_deps("npcap_sdk")
elseif is_plat("linux") then
add_deps("libpcap")
end

on_install("windows", function (package)
local configs = {}
table.insert(configs, "-DPCAPPP_BUILD_EXAMPLES=OFF")
table.insert(configs, "-DPCAPPP_BUILD_TESTS=OFF")
on_install("windows", "linux", function (package)
local configs = {
"-DPCAPPP_BUILD_EXAMPLES=OFF",
"-DPCAPPP_BUILD_TESTS=OFF",
}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
import("package.tools.cmake").install(package, configs)
end)
Expand Down

0 comments on commit dbf3267

Please sign in to comment.