-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlambdapi.cabal
51 lines (48 loc) · 1.62 KB
/
lambdapi.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
-- Initial lambdapi.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: lambdapi
version: 0.1.0.0
-- synopsis:
-- description:
license: GPL-3
license-file: LICENSE
author: Ningning
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable lambdapi
main-is: Main.hs
other-modules: Tokens
Parser
PrettyPrint
Syntax
TypeCheck
Environment
-- other-extensions:
build-depends: ansi-wl-pprint == 0.6.*
, array == 0.5.*
, base >=4.6 && <5
, haskeline == 0.7.*
, mtl == 2.2.*
, parsec == 3.1.*
, text == 1.2.*
, language-java == 0.2.*
, transformers
, unbound-generics
, containers == 0.5.6.2
build-tools: alex == 3.1.*,
happy == 1.19.*
hs-source-dirs: src
default-language: Haskell2010
-- test-suite test
-- default-language: Haskell2010
-- type: exitcode-stdio-1.0
-- hs-source-dirs: tests
-- main-is: test.hs
-- build-depends: base >= 4.6 && < 5
-- , lambdapi
-- , tasty == 0.10.*
-- , tasty-hunit == 0.9.*