anki/qt/mac/BUILD.bazel

17 lines
406 B
Python
Raw Normal View History

py_binary(
name = "helper_build",
srcs = ["helper_build.py"],
tags = ["manual"],
)
genrule(
name = "helper_dylib",
srcs = glob(["*.swift"]),
outs = ["libankihelper.dylib"],
cmd = "$(location :helper_build) $@ $(COMPILATION_MODE) $(SRCS)",
message = "Compiling Swift dylib",
2021-02-04 11:41:08 +01:00
tags = ["manual"],
tools = [":helper_build"],
visibility = ["//qt:__subpackages__"],
)