zmqpb: add package (#2461)

* zmqpb: add package

* add on_test

* use on_install
yeet on_fetch and on_load

* add dependencies of library

* set platforms

* Update xmake.lua

---------

Co-authored-by: ruki <waruqi@gmail.com>
pull/2473/head
SFGrenade 1 year ago committed by GitHub
parent e4de08bc39
commit 2e0536c5f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 26
      packages/z/zmqpb/xmake.lua

@ -0,0 +1,26 @@
package("zmqpb")
set_homepage("https://github.com/SFGrenade/ZmqPb/")
set_description("A helper to use zeromq and protobuf together")
set_license("MPL-2.0")
set_urls("https://github.com/SFGrenade/ZmqPb/archive/refs/tags/v$(version).tar.gz",
"https://github.com/SFGrenade/ZmqPb.git")
add_versions("0.1", "4a34ec92faa381306356e84e2a2000093d8f76cfa037db1f4cd0adb0205faebb")
add_deps("cppzmq")
add_deps("fmt")
add_deps("protobuf-cpp")
on_install("windows", "macosx", "linux", function (package)
local configs = {}
import("package.tools.xmake").install(package, configs)
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
void test() {
ZmqPb::ReqRep network( "tcp://127.0.0.1", 13337, false );
network.run();
}
]]}, {configs = {languages = "c++14"}, includes = "zmqPb/reqRep.hpp"}))
end)
Loading…
Cancel
Save