9e1482e29d
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.
35 lines
917 B
Swift
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),
|
|
]
|
|
),
|
|
]
|
|
)
|