-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Anka
authored and
Anka
committed
Sep 9, 2024
1 parent
50d0442
commit 426871a
Showing
1 changed file
with
11 additions
and
10 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 |
---|---|---|
@@ -1,23 +1,24 @@ | ||
// swift-tools-version:5.5 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "MSCO", | ||
platforms: [ | ||
.iOS(.v13) | ||
.iOS(.v15) | ||
], | ||
products: [ | ||
.library( | ||
name: "MSCO", | ||
targets: ["MSCO"]), | ||
.library( | ||
name: "MSCO", | ||
targets: ["MSCO"] | ||
), | ||
], | ||
dependencies: [], | ||
targets: [ | ||
.binaryTarget( | ||
name: "MSCO", | ||
url: "https://github.com/rewe-digital-incubator/MSCO-SP/releases/download/v0.10.1/MSCO.xcframework.zip", | ||
checksum: "c4cb68148ee922c6f744829af79e243e16f27044de075235410f96525aab2532") | ||
.binaryTarget( | ||
name: "MSCO", | ||
url: "https://github.com/rewe-digital-incubator/MSCO-SP/releases/download/v0.11.0/MSCO.xcframework.zip", | ||
checksum: "691f7f5c9121853c192cb987e752f7a73f325f026d55bb47ee86daf61d026596" | ||
) | ||
] | ||
) | ||
) |