handle xcode crash

This commit is contained in:
Amir Mohammadi
2024-01-17 15:57:50 +03:30
parent fd34690d49
commit 741dd4df03
2 changed files with 34 additions and 4 deletions

View File

@@ -0,0 +1,27 @@
// swift-tools-version: 5.4
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Libcore",
platforms: [
// Minimum platform version
.iOS(.v13),
.tvOS(.v13)
],
products: [
.library(
name: "Libcore",
targets: ["Libcore"]),
],
dependencies: [
// No dependencies
],
targets: [
.binaryTarget(
name: "Libcore",
path: "../Frameworks/Libcore.xcframework"
)
]
)