forked from ilya-klyuchnikov/lambdapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lph.cabal
51 lines (49 loc) · 1.04 KB
/
lph.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
cabal-version: 3.0
name: lph
version: 0.1
build-type: Simple
maintainer: Ilya Klyuchnikov
description: Dependently typed lambda calculus
executable st
build-depends:
base >=4.9.1.0,
mtl >=2.2.1,
parsec >=3.1.11,
pretty >=1.1.3.5
main-is:
Lambda/Main.hs
buildable:
True
hs-source-dirs:
src
other-modules:
Common
REPL
Lambda.AST
Lambda.Check
Lambda.Eval
Lambda.Parser
Lambda.Printer
Lambda.Quote
ghc-options: -main-is Lambda.Main
default-language: Haskell2010
executable lp
build-depends:
base >=4.9.1.0,
mtl >=2.2.1,
parsec >=3.1.11,
pretty >=1.1.3.5
main-is: LambdaPi/Main.hs
buildable: True
hs-source-dirs: src
other-modules:
Common
REPL
LambdaPi.AST
LambdaPi.Check
LambdaPi.Eval
LambdaPi.Parser
LambdaPi.Printer
LambdaPi.Quote
ghc-options: -main-is LambdaPi.Main
default-language: Haskell2010