-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
41 lines (38 loc) · 1.28 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// swift-tools-version: 6.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
// =================================================================
// || Do not edit! This file is generated by node/zipFramework.js ||
// =================================================================
import PackageDescription
let package = Package(
name: "FuegoOnAppleSilicon",
platforms: [.iOS(.v14), .macOS(.v13), .visionOS(.v1)],
products: [
.library(
name: "FuegoOnAppleSilicon",
targets: ["FuegoOnAppleSilicon", "FuegoCBridge"]
),
],
targets: [
.binaryTarget(
name: "FuegoXCFramework",
url: "https://github.com/mesqueeb/FuegoOnAppleSilicon/releases/download/v1.0.0/Fuego-1.0.0.xcframework.zip",
checksum: "d8bbdfb8a823147dae663e0bbc083fa90dc4031371e092326e6779da8efe97c3"
),
.target(
name: "FuegoCBridge",
dependencies: ["FuegoXCFramework"],
path: "FuegoOnAppleSilicon/Sources/CBridge"
),
.target(
name: "FuegoOnAppleSilicon",
dependencies: ["FuegoCBridge"],
path: "FuegoOnAppleSilicon/Sources/SwiftBridge"
),
.testTarget(
name: "FuegoOnAppleSiliconTests",
dependencies: ["FuegoOnAppleSilicon"],
path: "FuegoOnAppleSilicon/Tests"
),
]
)