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
parent
e4de08bc39
commit
2e0536c5f0
1 changed files with 26 additions and 0 deletions
@ -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…
Reference in new issue