-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMiniJava.cabal
75 lines (71 loc) · 1.24 KB
/
MiniJava.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
name: MiniJava
version: 0.1.0.0
synopsis: A MiniJava compiler
description: Compiles MiniJava (a subset of Java) to MIPS assembly
author: Chris Wendt
maintainer: chrismwendt@gmail.com
category: Compiler
build-type: Simple
cabal-version: >=1.8
library
hs-source-dirs: src
exposed-modules:
AST
, ASTTyped
, CodeGenerator
, Lexer
, Parser
, RegisterAllocator
, SSA
, SSACompiler
, SSARegisters
, TypeChecker
, Interface
build-depends:
base
, containers
, pretty-show
, fgl
, parsec
, process
, monad-loops
, bifunctors
, lens
, mtl
, multimap
, disjoint-containers
, transformers
, safe
, pretty
, errors
executable MiniJava
main-is: Main.hs
hs-source-dirs: app
build-depends:
base
, MiniJava
, optparse-applicative
, mtl
test-suite MiniJava-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Test.hs
build-depends:
base
, MiniJava
, process
, monad-loops
, tasty
, tasty-hunit
, HUnit
, directory
, mtl
benchmark MiniJava-benchmark
type: exitcode-stdio-1.0
hs-source-dirs: benchmark
main-is: Benchmark.hs
build-depends:
base
, criterion
, MiniJava
, mtl