-
Notifications
You must be signed in to change notification settings - Fork 8
/
yacctt.cabal
42 lines (41 loc) · 904 Bytes
/
yacctt.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
name: yacctt
version: 0.1.0.0
description: Experimental implementation of Cartesian cubical type theory.
homepage: https://github.com/mortberg/yacctt
author: Anders Mörtberg and Carlo Angiuli
maintainer: [email protected]
copyright: 2018 Anders Mörtberg and Carlo Angiuli
license: MIT
build-type: Custom
cabal-version: >= 1.10
executable yacctt
main-is: Main.hs
other-modules:
CTT,
Cartesian,
Eval,
Resolver,
TypeChecker,
Exp.Abs,
Exp.Lex,
Exp.ErrM,
Exp.Layout,
Exp.Print,
Exp.Par
hs-source-dirs:
.
ghc-options: -O2 -rtsopts -v0
build-depends:
base >=4.7 && <5,
containers,
pretty,
mtl,
BNFC,
array,
haskeline,
time,
filepath,
directory,
monad-gen
build-tools: alex, happy, bnfc
default-language: Haskell2010