-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBLT.cabal
78 lines (73 loc) · 2.76 KB
/
BLT.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
-- Initial BLT.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: BLT
version: 0.1.0.0
synopsis: Boogie less Trigger
description: BLT takes Boogie program and translate it into
First-order verification conditions using TPTP syntax.
homepage: https://emptylambda.github.io/BLT/
license: GPL-3
license-file: LICENSE
author: Jeff Chen
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: Boogie.AST,
Boogie.Position,
Boogie.ErrorAccum,
Boogie.Parser,
Boogie.PrettyAST,
Boogie.Tokens,
Boogie.TypeChecker,
Boogie.ProofObs,
Boogie.Util,
FOOL.AST,
FOOL.TransExpr,
FOOL.TPTP,
FOOL.PrettyAST,
ToTPTP,
Pretty
build-depends: HUnit >= 1.2.5.2,
ansi-terminal >= 0.6.2.3,
ansi-wl-pprint >= 0.6.7.3,
base,
cmdargs ==0.10.*,
containers >= 0.4,
directory >= 1.2.2.0,
filepath >= 1.4.0.0,
hspec >= 2.2.4,
lens >= 4.0,
mtl >= 2.2.1,
optparse-applicative >= 0.12.1.0,
parsec ==3.1.*,
syb >= 0.6,
time >= 1.5.0.1,
transformers >= 0.4.2.0,
uniplate >= 1.6.12
executable BLT
main-is: BLT.hs
ghc-options: -threaded
-fprof-auto
build-depends: HUnit >= 1.2.5.2,
ansi-terminal >= 0.6.2.3,
ansi-wl-pprint >= 0.6.7.3,
base,
cmdargs ==0.10.*,
containers >= 0.4,
directory >= 1.2.2.0,
hspec >= 2.2.4,
lens >= 4.0,
mtl >= 2.2.1,
parsec ==3.1.*,
syb >= 0.6,
time >= 1.5.0.1,
transformers >= 0.4.2.0,
uniplate >= 1.6.12
hs-source-dirs: src
default-language: Haskell2010