-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrammata.cabal
executable file
·48 lines (46 loc) · 2.04 KB
/
grammata.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
-- Initial grammata.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: grammata
version: 0.3.1.0
synopsis: Grammata-script parser, compiler and executing virtual machine.
-- description:
homepage: https://github.com/SRechenberger/grammata
license: GPL-3
license-file: LICENSE
author: Sascha Rechenberger
maintainer: [email protected]
copyright: Sascha Rechenberger 2014, 2015
category: Interpreter
build-type: Simple
cabal-version: >=1.8
executable grammata
main-is: Main.hs
other-modules: Grammata.Machine,
Grammata.Machine.Core,
Grammata.Machine.Core.Imperative,
Grammata.Machine.Core.Functional,
Grammata.Machine.Core.Logical,
Grammata.Machine.Core.Class
Grammata.Machine.Core.Types
Grammata.Machine.Storage,
Grammata.Machine.Storage.Imperative,
Grammata.Machine.Storage.Functional,
Grammata.Machine.Storage.Logical,
Grammata.Language
Grammata.Language.Program,
Grammata.Language.Expression,
Grammata.Language.Functional,
Grammata.Language.Imperative,
Grammata.Language.Logical,
Grammata.Language.Value
Grammata.Interpreter.Compilation
Grammata.Interpreter.Compiler
build-depends: base == 4.*,
mtl == 2.*,
transformers == 0.*,
either == 4.*,
array == 0.*,
containers == 0.5.*,
QuickCheck == 2.*,
parsec == 3.1.*
hs-source-dirs: src