20 lines
360 B
Swift
20 lines
360 B
Swift
// swift-tools-version: 6.0
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "AIWorkspace",
|
|
platforms: [
|
|
.macOS(.v13)
|
|
],
|
|
products: [
|
|
.executable(name: "AIWorkspace", targets: ["AIWorkspace"])
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "AIWorkspace",
|
|
path: "Sources"
|
|
)
|
|
]
|
|
)
|