-
Notifications
You must be signed in to change notification settings - Fork 0
/
tinyBASIC.cabal
87 lines (82 loc) · 1.39 KB
/
tinyBASIC.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
-- Initial tinyBASIC.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name:
tinyBASIC
version:
0.1.0.0
-- synopsis:
-- description:
-- license:
license-file:
LICENSE
author:
Sascha Rechenberger
maintainer:
sascha.rechenberger@uni-ulm.de
-- copyright:
-- category:
build-type:
Simple
-- extra-source-files:
cabal-version:
>=1.10
library
hs-source-dirs:
lib
exposed-modules:
TinyBASIC.Definition,
TinyBASIC.Parser,
TinyBASIC.Execution
build-depends:
base >4.8 && <4.10,
parsec,
mtl,
containers
default-language:
Haskell2010
executable tinyBASIC
main-is:
Main.hs
other-modules:
-- other-extensions:
build-depends:
base >4.8 && <4.10,
tinyBASIC,
mtl,
parsec
hs-source-dirs:
src
default-language:
Haskell2010
test-suite exec
type:
exitcode-stdio-1.0
hs-source-dirs:
test
main-is:
Execution-Test.hs
build-depends:
base,
tinyBASIC,
HUnit,
parsec,
containers,
MonadRandom,
process,
mtl
default-language:
Haskell2010
test-suite parser
type:
exitcode-stdio-1.0
hs-source-dirs:
test
main-is:
Parser-Test.hs
build-depends:
base,
tinyBASIC,
QuickCheck,
parsec
default-language:
Haskell2010