-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhigherlc.cabal
39 lines (38 loc) · 919 Bytes
/
higherlc.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
name: higerlc
version: 2.0
synopsis: A prototype for a kind of higher-dimensional lambda calculus.
description: A prototype for a kind of higher-dimensional lambda calculus.
author: Anthony Hart
maintainer:
-- copyright:
category: Language
build-type: Custom
extra-source-files: Makefile, README.md, Exp.cf, examples/*.hlc
cabal-version: >=1.10
executable higerlc
main-is: Main.hs
other-modules:
PrettyPrinting,
TypeChecker,
AbstractSyntax,
RawSyntax,
Exp.Abs,
Exp.ErrM,
Exp.Layout,
Exp.Lex,
Exp.Par,
Exp.Print,
Exp.Skel,
Exp.Test
other-extensions:
LambdaCase
build-depends:
base,
unordered-containers,
array,
transformers,
mtl,
containers
-- hs-source-dirs:
build-tools: alex, happy, bnfc
default-language: Haskell2010