diff --git a/iphone-arbody/ARBodyTracker.swiftpm/Package.swift b/iphone-arbody/ARBodyTracker.swiftpm/Package.swift index 3381c70..ed1a671 100644 --- a/iphone-arbody/ARBodyTracker.swiftpm/Package.swift +++ b/iphone-arbody/ARBodyTracker.swiftpm/Package.swift @@ -8,9 +8,15 @@ let package = Package( products: [ .executable(name: "ARBodyTracker", targets: ["ARBodyTracker"]), ], + dependencies: [ + .package(path: "../../shared/AVLiveWire"), + ], targets: [ .executableTarget( name: "ARBodyTracker", + dependencies: [ + .product(name: "AVLiveWire", package: "AVLiveWire"), + ], path: "Sources/ARBodyTracker" ), ] diff --git a/launcher/AV-Live-Body/Package.swift b/launcher/AV-Live-Body/Package.swift index 9694297..1a3e991 100644 --- a/launcher/AV-Live-Body/Package.swift +++ b/launcher/AV-Live-Body/Package.swift @@ -4,9 +4,15 @@ 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"),