-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add additional Package.swift for Swift 5.9 support
- Loading branch information
1 parent
604101b
commit 631e648
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// 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: "OllamaKit", | ||
platforms: [ | ||
.iOS(.v15), | ||
.macOS(.v12), | ||
.macCatalyst(.v15) | ||
], | ||
products: [ | ||
.library( | ||
name: "OllamaKit", | ||
targets: ["OllamaKit"]), | ||
], | ||
dependencies: [ | ||
.package(url: "https://github.com/apple/swift-docc-plugin.git", .upToNextMajor(from: "1.3.0")) | ||
], | ||
targets: [ | ||
.target( | ||
name: "OllamaKit", | ||
dependencies: []), | ||
.testTarget( | ||
name: "OllamaKitTests", | ||
dependencies: ["OllamaKit"]), | ||
] | ||
) |