This repository has been archived by the owner on Apr 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.yaml
90 lines (82 loc) · 1.42 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
library:
source-dirs: src
when:
- condition: flag(profile)
ghc-options:
- -prof
- -auto-all
- -with-rtsopts=-p,-s
ghc-options:
- -Wall
- -Wno-unused-do-bind
- -Wno-orphans
- -Wno-name-shadowing
- -Wno-unused-matches
- -O2
- -optc-O3
author: Ghilain Bergeron (Mesabloo)
github: mesabloo/nihil
license: BSD3
copyright: 2019 Ghilain Bergeron (Mesabloo)
description: Please see the README on GitHub at <https://github.com/mesabloo/nihil#readme>
dependencies:
- base
- gnc-utils
- gnc-core
- gnc-parser
- gnc-typechecker
- gnc-runtime
- gnc-pretty
name: gnc
version: 0.1.0.0
extra-source-files:
- README.md
executables:
nihilin:
source-dirs: app/nihilin
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wno-type-defaults
dependencies:
- gnc
- containers
- lens
- megaparsec
- mtl
- ansi-wl-pprint
- text
flags:
profile:
description: "Enable/disable compiler profiling."
manual: true
default: false
tests:
compiler:
main: Spec.hs
source-dirs: tests/compiler
ghc-options:
- -O0
- -optc-O0
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- gnc
- hspec
- text
- containers
utils:
main: Spec.hs
source-dirs: tests/utils
ghc-options:
- -O0
- -optc-O0
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- gnc
- hspec