-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
84 lines (77 loc) · 1.22 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
name: tptp-parser
extra-source-files:
- proto/**/*.proto
custom-setup:
dependencies:
- base
- Cabal
- proto-lens-setup
dependencies:
- base >= 4.7 && < 5
- either
- tasty-hunit
- tasty
- parsec
- transformers
- unix
- bytestring
- utf8-string
- tar
- http-conduit
- zlib
- lens
- proto-lens-runtime
- proto-lens
- microlens
- text
- containers
- mtl
- set-monad >= 0.3
- MissingH
- threads
- concurrent-extra
- unbounded-delays
- deepseq
- split
- data-ordlist
- clock
- hashable
- hashtables
- options
- array
ld-options: -static
ghc-options: -O2 -Werror -fbreak-on-error -fPIC
library:
source-dirs: src
exposed-modules:
- TestBin
- ConvBin
- ParserBin
- ThreadBin
- CheckerBin
- Proto.Tptp
- Proto.Proof
- Proto.Solutions
tests:
test:
main: test.hs
source-dirs: bin
dependencies: tptp-parser
executables:
parser:
main: parser.hs
source-dirs: bin
dependencies: tptp-parser
conv:
main: conv.hs
source-dirs: bin
dependencies: tptp-parser
thread:
ghc-options: -threaded -with-rtsopts=-N4
main: thread.hs
source-dirs: bin
dependencies: tptp-parser
checker:
main: checker.hs
source-dirs: bin
dependencies: tptp-parser