-
Notifications
You must be signed in to change notification settings - Fork 0
/
hwhile.cabal
66 lines (61 loc) · 2.24 KB
/
hwhile.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
name: hwhile
version: 0.1.1.5
synopsis: An implementation of Neil D. Jones' While language
license: GPL-3
license-file: LICENSE
author: Alex Jeffery
maintainer: [email protected]
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
Description:
An implementation of Neil D. Jones' While language. Developed in collaboration
with Dr. Bernhard Reus (University of Sussex, UK) for use in the Limits of
Computing module.
Source-Repository head
Type: git
Location: [email protected]:alexj136/HWhile.git
library
default-language: Haskell2010
hs-source-dirs: src/lib
build-depends: base >=4.6 && <5.0,
containers >=0.5 && <0.6,
array >=0.5 && <0.6,
filepath >=1.2 && <1.5,
haskeline >=0.7 && <0.8,
repline >=0.1.6 && <0.1.8,
mtl >=2.2 && <2.3
exposed-modules: Lexer,
SourceParser,
SugarSyntax,
DesugarSI,
InterSyntax,
DesugarIP,
PureSyntax,
PureInterpreter,
LoggingInterpreter,
REPL,
Unparser
executable hwhile
default-language: Haskell2010
hs-source-dirs: src/exec
build-depends: base >=4.8 && <4.11,
containers >=0.5 && <0.6,
array >=0.5 && <0.6,
filepath,
mtl,
hwhile
build-tools: alex, happy
main-is: Main.hs
Test-Suite hwhile-testsuite
default-language: Haskell2010
hs-source-dirs: src/test
build-depends: base >=4.8 && <4.11,
containers >=0.5 && <0.6,
array >=0.5 && <0.6,
Cabal,
mtl,
hwhile
type: exitcode-stdio-1.0
main-is: UnitTests.hs