Added mathFonts bundle and initial code translation to test MTTypesetter.

This commit is contained in:
Michael Griebling
2023-01-12 08:32:02 -05:00
parent 82f8b08c61
commit 2ee1cc0b19
15 changed files with 1635 additions and 25 deletions

View File

@@ -2,6 +2,7 @@
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
import CoreGraphics
let package = Package(
name: "SwiftMathRender",
@@ -20,7 +21,10 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "SwiftMathRender",
dependencies: []),
dependencies: [],
resources: [
.copy("mathFonts.bundle")
]),
.testTarget(
name: "SwiftMathRenderTests",
dependencies: ["SwiftMathRender"]),