forked from proglang/ldgv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
108 lines (101 loc) · 1.98 KB
/
package.yaml
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
name: ldgv
version: 0.0.1
github: "proglang/ldgv"
synopsis: Frontend, interpreter and C backend for LDGV/LDST
license: BSD3
license-file: LICENSE
author:
- Thomas Leyh (CCLDLC implementation)
- Nils Hagner (web frontend, interpreter)
- Janek Spaderna (command line fronted, C backend)
- Peter Thiemann (parser, typechecker)
maintainer: "[email protected]"
copyright: "2019-2021 Chair of Programming Languages, Uni Freiburg"
ghc-options:
- -Wall
- -Wcompat
- -Wredundant-constraints
- -Wno-name-shadowing
- -Wno-unused-do-bind
- -Wno-unused-matches
extra-doc-files:
- examples/*.ldgv
- examples/*.ccldgv
- examples/*.gldgv
- examples/*.txt
- examples/*.out
data-files:
- c-support/runtime/*.h
- c-support/runtime/*.c
dependencies:
- base >=4.12 && <5
- bytestring
- filepath
- mtl
- text
library:
source-dirs: src
other-modules:
- PrettySyntax
- TCSubtyping
- TCTyping
- TCXMonad
- C.CPS
- C.MonadStack
- Paths_ldgv
build-tools:
- alex
- happy
dependencies:
- array
- containers
- file-embed
- lens
- prettyprinter
- transformers
- typed-process
- validation-selective
tests:
ldgv-test:
main: Spec.hs
source-dirs: test
other-modules:
- ArithmeticSpec
- CcldlcSpec
- CSpec
- FunctionApplicationSpec
- FunctionSignaturesSpec
- InterpreterSpec
- LdlcSpec
- TypecheckerSpec
- Utils
- UtilsFuncCcldlc
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
build-tools: hspec-discover
dependencies:
- ldgv
- QuickCheck
- array
- containers
- hspec
- typed-process
- unliftio
executables:
ldgv:
main: Main.hs
other-modules: Output
source-dirs: exe
dependencies:
- ldgv
- optparse-applicative
- prettyprinter
- prettyprinter-ansi-terminal
- terminal-size
- unliftio
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N