mirror of
https://github.com/zeromq/libzmq
synced 2025-03-28 21:13:24 +00:00
Add Bazel build files based on Cmake.
This commit is contained in:
parent
ee29bcd64a
commit
33c3dc9582
24
BUILD.bazel
Normal file
24
BUILD.bazel
Normal file
@ -0,0 +1,24 @@
|
||||
""" Builds libzmq."""
|
||||
|
||||
load("@rules_foreign_cc//foreign_cc:defs.bzl", "cmake")
|
||||
|
||||
filegroup(
|
||||
name = "srcs",
|
||||
srcs = glob(["**"]),
|
||||
)
|
||||
|
||||
cmake(
|
||||
name = "libzmq",
|
||||
env = {"CMAKE_BUILD_TYPE": "Release"},
|
||||
lib_source = ":srcs",
|
||||
out_include_dir = "include",
|
||||
out_static_libs = ["libzmq.a"],
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
cc_library(
|
||||
name = "libzmq_headers_only",
|
||||
hdrs = glob(["include/*.h"]),
|
||||
strip_include_prefix = "include",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
13
MODULE.bazel
Normal file
13
MODULE.bazel
Normal file
@ -0,0 +1,13 @@
|
||||
"""
|
||||
The ZeroMQ lightweight messaging kernel is a library which extends the
|
||||
standard socket interfaces with features traditionally provided by
|
||||
specialised messaging middleware products.
|
||||
"""
|
||||
|
||||
module(
|
||||
name = "libzmq",
|
||||
version = "4.3.5",
|
||||
compatibility_level = 4,
|
||||
)
|
||||
|
||||
bazel_dep(name = "rules_foreign_cc", version = "0.10.1")
|
Loading…
x
Reference in New Issue
Block a user