forked from jmorag/mcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
63 lines (57 loc) · 1.13 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
name: mcc
version: 0.1.0.0
github: jmorag/mcc
synopsis: A microc compiler in Haskell
author: "Joseph Morag"
license-file: LICENSE
category: Compilers/Interpreters
ghc-options: -Wall
-fno-warn-name-shadowing
-Wcompat
-Wincomplete-uni-patterns
extra-source-files: README.md
dependencies:
- base >= 4.7 && < 5
- mtl
- array
- containers
- text
- string-conversions
- directory
- process
- unix
- filepath
- bytestring
- prettyprinter
- llvm-hs-pure >= 9 && < 10
- llvm-hs >= 9 && < 10
- llvm-hs-pretty >= 0.9 && < 1
- megaparsec
- parser-combinators
default-extensions: OverloadedStrings, LambdaCase
library:
source-dirs: src
executable:
main: Main.hs
source-dirs: app
dependencies:
- optparse-applicative
- mcc
- pretty-simple
tests:
testall:
main: Testall.hs
source-dirs: tests
dependencies:
- tasty
- tasty-golden
- tasty-hunit
- mcc
benchmarks:
bench:
main: Bench.hs
source-dirs: bench
dependencies:
- criterion
- mcc
- tasty-golden