remove usingnamespace from libxev and zig-protobuf
relevant PRs:
* libxev:
7f803181b1
* zig-protobuf: https://github.com/zml/zig-protobuf/pull/1/files
This means we can now build ZML with `-fincremental` (in debug mode only
and linux x86-64)
---------
Signed-off-by: Guillaume Wenzek <wzk@zml.ai>
14 lines
283 B
Python
14 lines
283 B
Python
load("@rules_zig//zig:defs.bzl", "zig_library")
|
|
|
|
zig_library(
|
|
name = "xev",
|
|
srcs = glob([
|
|
"src/*.zig",
|
|
"src/backend/*.zig",
|
|
"src/linux/*.zig",
|
|
"src/watcher/*.zig",
|
|
]),
|
|
main = "src/main.zig",
|
|
visibility = ["//visibility:public"],
|
|
)
|