23 lines
541 B
Swift
23 lines
541 B
Swift
// swift-tools-version: 5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Supertonic",
|
|
platforms: [
|
|
.macOS(.v13)
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/microsoft/onnxruntime-swift-package-manager.git", from: "1.16.0"),
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "example_onnx",
|
|
dependencies: [
|
|
.product(name: "onnxruntime", package: "onnxruntime-swift-package-manager")
|
|
],
|
|
path: "Sources"
|
|
)
|
|
]
|
|
)
|
|
|