forked from simonbs/Runestone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
34 lines (32 loc) · 1.26 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
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Runestone",
defaultLocalization: "en",
platforms: [
.iOS(.v14)
],
products: [
.library(name: "Runestone", targets: ["Runestone"])
],
dependencies: [
// Tree-sitter supports SPM but as of writing this, the official Tree-sitter repository has no versions published that contains the Package.swift file. Therefore, we depend on a fork of Tree-sitter that has a version published.
// We will pin against the official version of Tree-sitter as soon as a new version is published.
.package(url: "https://github.com/simonbs/tree-sitter", from: "0.20.9-beta-1")
],
targets: [
.target(name: "Runestone", dependencies: [
.product(name: "TreeSitter", package: "tree-sitter")
], resources: [
.process("TextView/Appearance/Theme.xcassets")
]),
.target(name: "TestTreeSitterLanguages", cSettings: [
.unsafeFlags(["-w"])
]),
.testTarget(name: "RunestoneTests", dependencies: [
"Runestone",
"TestTreeSitterLanguages"
])
]
)