-
Notifications
You must be signed in to change notification settings - Fork 2
/
postt.cabal
100 lines (88 loc) · 2.16 KB
/
postt.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
cabal-version: 3.0
name: postt
version: 0.1.0.0
synopsis:
-- A longer description of the package.
-- description:
homepage:
-- A URL where users can report bugs.
-- bug-reports:
license: MIT
license-file: LICENSE
author: Thierry Coquand, Jonas Höfer
maintainer: [email protected]
-- A copyright notice.
-- copyright:
category: Dependent Types
build-type: Custom
extra-source-files: CHANGELOG.md, src/PosTT/Frontend/Exp.cf
custom-setup
setup-depends:
base,
Cabal,
process
executable postt
main-is: Main.hs
ghc-options: -rtsopts -Wall -Wno-orphans
-- Modules included in this executable, other than Main.
other-modules:
Algebra.Lattice
, PosTT.Common
, PosTT.Conversion
, PosTT.Errors
, PosTT.Eval
, PosTT.Frontend.Exp.Abs
, PosTT.Frontend.Exp.ErrM
, PosTT.Frontend.Exp.Layout
, PosTT.Frontend.Exp.Lex
, PosTT.Frontend.Exp.Par
, PosTT.Frontend.Exp.Print
, PosTT.Frontend.Exp.Skel
, PosTT.Frontend.PreTerms
, PosTT.Frontend.ScopeChecker
, PosTT.HeadLinearReduction
, PosTT.Poset
, PosTT.Pretty
, PosTT.Quotation
, PosTT.SAT
, PosTT.Terms
, PosTT.TypeChecker
, PosTT.Values
autogen-modules:
PosTT.Frontend.Exp.Abs
, PosTT.Frontend.Exp.ErrM
, PosTT.Frontend.Exp.Layout
, PosTT.Frontend.Exp.Lex
, PosTT.Frontend.Exp.Par
, PosTT.Frontend.Exp.Print
, PosTT.Frontend.Exp.Skel
default-extensions:
TypeFamilies
, ImplicitParams
, LambdaCase
, PatternSynonyms
, ViewPatterns
, OverloadedStrings
, UndecidableInstances
, DerivingVia
, MultiWayIf
build-depends:
array
, adjunctions
, base ^>=4.17.2.1
, bytestring
, containers
, directory
, extra
, filepath
, haskeline
, mtl
, optparse-applicative
, prettyprinter
, split
build-tool-depends:
alex:alex
, happy:happy
, BNFC:bnfc
hs-source-dirs: src
default-language: GHC2021