14 lines
351 B
Swift
14 lines
351 B
Swift
// swift-tools-version: 6.0
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "VerseVDIProtocol",
|
|
platforms: [.macOS(.v14)],
|
|
products: [
|
|
.library(name: "VerseVDIProtocol", targets: ["VerseVDIProtocol"]),
|
|
],
|
|
targets: [
|
|
.target(name: "VerseVDIProtocol", path: "gen/swift", sources: ["Protocol.swift"]),
|
|
]
|
|
)
|