Files
L'électron rare 9e1482e29d chore: archive legacy AV-Live-Body
Superseded by avlivebody-mac/ on 2026-05-18. See
docs/superpowers/specs/2026-05-18-avlivebody-macos-rewrite-design.md
for the rewrite design and rationale.
2026-05-18 21:54:48 +02:00

35 lines
917 B
Swift

// swift-tools-version:6.0
import PackageDescription
let package = Package(
name: "AVLiveBody",
platforms: [.macOS(.v15)],
dependencies: [
.package(path: "../../shared/AVLiveWire"),
],
targets: [
.executableTarget(
name: "AVLiveBody",
dependencies: [
.product(name: "AVLiveWire", package: "AVLiveWire"),
],
path: "Sources/AVLiveBody",
resources: [
.copy("Resources/smplx_faces.bin"),
.copy("Resources/scene.metal"),
],
swiftSettings: [
.swiftLanguageMode(.v5),
]
),
.testTarget(
name: "AVLiveBodyTests",
dependencies: ["AVLiveBody"],
path: "Tests/AVLiveBodyTests",
swiftSettings: [
.swiftLanguageMode(.v5),
]
),
]
)