m323/Sources/Aufgabe 5/BUILD.bazel
2026-06-15 09:56:36 +02:00

10 lines
358 B
Text

load("@rules_swift//swift:swift.bzl", "swift_binary")
# Per-directory BUILD: define targets where their sources live, then reference
# them by label (e.g. //Sources/Aufgabe 5:Aufgabe5) from elsewhere to keep the
# top-level BUILD.bazel uncluttered.
swift_binary(
name = "Aufgabe5",
srcs = ["main.swift"],
visibility = ["//visibility:public"],
)