44 lines
978 B
Swift
44 lines
978 B
Swift
// swift-tools-version: 5.9
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "audiotee",
|
|
platforms: [
|
|
.macOS("14.2")
|
|
],
|
|
products: [
|
|
// Library that can be imported by other packages
|
|
.library(
|
|
name: "AudioTeeCore",
|
|
targets: ["AudioTeeCore"]
|
|
),
|
|
// CLI executable
|
|
.executable(
|
|
name: "audiotee",
|
|
targets: ["AudioTeeCLI"]
|
|
)
|
|
],
|
|
targets: [
|
|
// Core library with all business logic
|
|
.target(
|
|
name: "AudioTeeCore",
|
|
path: "Sources/AudioTeeCore"
|
|
),
|
|
|
|
// CLI executable that uses the library
|
|
.executableTarget(
|
|
name: "AudioTeeCLI",
|
|
dependencies: ["AudioTeeCore"],
|
|
path: "Sources/AudioTeeCLI"
|
|
),
|
|
|
|
// Tests for the library
|
|
.testTarget(
|
|
name: "AudioTeeCoreTests",
|
|
dependencies: ["AudioTeeCore"],
|
|
path: "Tests/AudioTeeCoreTests"
|
|
)
|
|
]
|
|
) |