Clean slate
This commit is contained in:
@@ -1,27 +1,29 @@
|
||||
// swift-tools-version: 5.7
|
||||
// swift-tools-version: 6.0
|
||||
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "swiftui-math",
|
||||
defaultLocalization: "en",
|
||||
platforms: [.iOS("11.0"), .macOS("12.0")],
|
||||
products: [
|
||||
.library(
|
||||
name: "SwiftUIMath",
|
||||
targets: ["SwiftUIMath"]),
|
||||
],
|
||||
dependencies: [
|
||||
],
|
||||
targets: [
|
||||
.target(
|
||||
name: "SwiftUIMath",
|
||||
dependencies: [],
|
||||
resources: [
|
||||
.copy("mathFonts.bundle")
|
||||
]),
|
||||
.testTarget(
|
||||
name: "SwiftUIMathTests",
|
||||
dependencies: ["SwiftUIMath"]),
|
||||
]
|
||||
name: "swiftui-math",
|
||||
platforms: [
|
||||
.macOS(.v12),
|
||||
.iOS(.v15),
|
||||
.tvOS(.v15),
|
||||
.watchOS(.v8),
|
||||
.visionOS(.v1),
|
||||
],
|
||||
products: [
|
||||
.library(name: "SwiftUIMath", targets: ["SwiftUIMath"])
|
||||
],
|
||||
dependencies: [],
|
||||
targets: [
|
||||
.target(
|
||||
name: "SwiftUIMath",
|
||||
dependencies: [],
|
||||
resources: [.copy("mathFonts.bundle")]
|
||||
),
|
||||
.testTarget(
|
||||
name: "SwiftUIMathTests",
|
||||
dependencies: ["SwiftUIMath"]
|
||||
),
|
||||
]
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user