2022-12-25 17:50:32 +04:00

19 lines
363 B
Python

load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
swift_library(
name = "ComponentFlow",
module_name = "ComponentFlow",
srcs = glob([
"Source/**/*.swift",
]),
copts = [
"-warnings-as-errors",
],
deps = [
"//submodules/Display"
],
visibility = [
"//visibility:public",
],
)