-
Notifications
You must be signed in to change notification settings - Fork 48
/
tree-sitter-c-sharp.cabal
58 lines (55 loc) · 2.04 KB
/
tree-sitter-c-sharp.cabal
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
cabal-version: 2.4
name: tree-sitter-c-sharp
version: 0.1.0.1
synopsis: Tree-sitter grammar/parser for C#
description: This package provides a parser for C# suitable for use with the tree-sitter package.
license: BSD-3-Clause
homepage: https://github.com/tree-sitter/haskell-tree-sitter/tree/master/tree-sitter-c-sharp
author: Max Brunsfeld, Tim Clem, Rob Rix, Josh Vera, Rick Winfrey, Ayman Nadeem, Patrick Thomson, Damien Guard
maintainer: [email protected]
copyright: 2020 GitHub
category: Tree-sitter, CSharp, C#
build-type: Simple
data-files: vendor/tree-sitter-c-sharp/src/node-types.json
, vendor/tree-sitter-c-sharp/test/corpus/*.txt
extra-doc-files: ChangeLog.md
common common
default-language: Haskell2010
ghc-options:
-Weverything
-Wno-all-missed-specialisations
-Wno-implicit-prelude
-Wno-missed-specialisations
-Wno-missing-import-lists
-Wno-missing-local-signatures
-Wno-monomorphism-restriction
-Wno-name-shadowing
-Wno-safe
-Wno-unsafe
if (impl(ghc >= 8.6))
ghc-options: -Wno-star-is-type
if (impl(ghc >= 8.8))
ghc-options: -Wno-missing-deriving-strategies
if (impl(ghc >= 8.10))
ghc-options:
-Wno-missing-safe-haskell-mode
-Wno-prepositive-qualified-module
if (impl(ghc >= 9.2))
ghc-options:
-Wno-missing-kind-signatures
-Wno-implicit-lift
library
import: common
exposed-modules: TreeSitter.CSharp
autogen-modules: Paths_tree_sitter_c_sharp
other-modules: Paths_tree_sitter_c_sharp
build-depends: base >= 4.12 && < 5
, tree-sitter ^>= 0.9.0.0
Include-dirs: vendor/tree-sitter-c-sharp/src
install-includes: tree_sitter/parser.h
c-sources: vendor/tree-sitter-c-sharp/src/parser.c
extra-libraries: stdc++
cc-options: -Wno-trigraphs
source-repository head
type: git
location: https://github.com/tree-sitter/haskell-tree-sitter