Skip to content

Commit bed9003

Browse files
added Package.swift
1 parent 2a46eae commit bed9003

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

Package.swift

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// swift-tools-version:5.3
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
4+
import PackageDescription
5+
6+
let version = "0.8.0"
7+
let package = Package(
8+
name: "YbridOgg",
9+
platforms: [
10+
.macOS(.v10_10), .iOS(.v9)
11+
],
12+
products: [
13+
.library(
14+
name: "YbridOgg",
15+
targets: ["YbridOgg"]),
16+
],
17+
dependencies: [
18+
],
19+
targets: [
20+
.binaryTarget(
21+
name: "YbridOgg",
22+
url: "https://github.com/ybrid/ogg-swift/releases/download/"+version+"/YbridOgg.xcframework.zip",
23+
checksum: "871547dc18a2c7257dc9711203afa523117c845cc73fc49b0e1fc7d32667f543"
24+
)
25+
]
26+
)

0 commit comments

Comments
 (0)