generated from tree-sitter-grammars/template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
64 lines (63 loc) · 1.76 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "TreeSitterTest",
platforms: [.macOS(.v10_13), .iOS(.v11)],
products: [
.library(name: "TreeSitterTest", targets: ["TreeSitterTest"]),
],
dependencies: [
.package(url: "https://github.com/ChimeHQ/SwiftTreeSitter", from: "0.8.0"),
],
targets: [
.target(
name: "TreeSitterTest",
dependencies: [],
path: ".",
exclude: [
"Cargo.toml",
"Makefile",
"binding.gyp",
"bindings/c",
"bindings/go",
"bindings/node",
"bindings/python",
"bindings/rust",
"prebuilds",
"node_modules",
"grammar.js",
"package.json",
"package-lock.json",
"pyproject.toml",
"setup.py",
"test",
"examples",
"ftplugin",
"ftdetect",
"plugin",
".editorconfig",
".github",
".gitignore",
".gitattributes",
],
sources: [
"src/parser.c",
"src/scanner.c"
],
resources: [
.copy("queries")
],
publicHeadersPath: "bindings/swift",
cSettings: [.headerSearchPath("src")]
),
.testTarget(
name: "TreeSitterTestTests",
dependencies: [
"SwiftTreeSitter",
"TreeSitterTest",
],
path: "bindings/swift/TreeSitterTestTests"
)
],
cLanguageStandard: .c11
)