-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmini.cabal
More file actions
executable file
·74 lines (72 loc) · 1.66 KB
/
mini.cabal
File metadata and controls
executable file
·74 lines (72 loc) · 1.66 KB
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
-- Initial mini.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: mini
version: 0.1.0.0
-- synopsis:
-- description:
license: GPL-3
license-file: LICENSE
author: Aidan K. Ewart
maintainer: aidanprattewart@gmail.com
-- copyright:
category: Compilation
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
executable mini
main-is: Main.hs
other-modules:
Parser.Parser,
Parser.Lexer,
Parser.SExpr,
Types.Ident,
Types.Pattern,
Types.SExpr,
Types.Syntax,
Types.Type,
Types.Graph,
Types.Prim,
Types.Core,
Types.Abstract,
TypeCheck.Check,
Elaborate.Elaborate,
Elaborate.MatchComp,
CPS.CPSify,
CPS.ClosureConv,
CPS.Spill,
CPS.Meta,
Backend.AbstGen,
Control.Monad.Errors,
Elaborate.Elaborator,
Types.CPS,
Types.Module,
Types.Injection,
Types.Pretty,
TypeCheck.Meta,
Error.Error,
Backend.X86_64_linux.Textual,
Backend.X86_64_linux.Types,
Backend.X86_64_linux.Translate,
Modules.Defunctorize,
Modules.Glue,
Modules.Module,
Types.Build,
Build.Load,
Build.Compile,
Build.Build,
CPSMachine,
Backend.C,
CPS.Interpreter,
Backend.Interpreter,
CPS.CPSOpt
-- other-extensions:
build-depends:
base >=4.9,
parsec >=3.1.14,
containers >=0.6.2.1,
transformers >=0.5.6.2,
mtl >=2.2.2,
directory >=1.3.6.0,
filepath >=1.4.2.1
hs-source-dirs: src
default-language: Haskell2010