-
Notifications
You must be signed in to change notification settings - Fork 26
/
encore.cabal
92 lines (90 loc) · 2.89 KB
/
encore.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
88
89
90
91
92
-- Initial encore.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: encore
version: 0.1.0.0
-- synopsis:
-- description:
homepage: http://upscale-project.eu/
-- license:
-- license-file: LICENSE
author: parapluu
maintainer: tobias.wrigstad@gmail.com
-- copyright:
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.22
executable encorec
main-is: TopLevel.hs
default-extensions: NamedFieldPuns
, FlexibleContexts
, GADTs
, Rank2Types
other-extensions: FlexibleInstances
, MultiParamTypeClasses
, StandaloneDeriving
, TypeSynonymInstances
, FunctionalDependencies
, CPP
, ScopedTypeVariables
build-depends: MissingH
, base
, containers >= 0.5.5.1
, directory
, hashable
, hpc
, mtl ==2.2.*
, megaparsec >= 5.1.2 && < 5.2
, semigroups
, pretty
, process
, template-haskell
, text >=1.1
, ghc >= 7.10
, unix >=2.7 && <2.8
, unordered-containers
, boxes
, filepath
hs-source-dirs: src/back src/front src/ir src/opt src/parser src/types
ghc-options: -Werror -fmax-pmcheck-iterations=10000000
default-language: Haskell2010
other-modules: AST.AST
, AST.Desugarer
, AST.Meta
, AST.PrettyPrinter
, AST.Util
, CCode.Main
, CCode.PrettyCCode
, CodeGen.CCodeNames
, CodeGen.ClassDecl
, CodeGen.ClassTable
, CodeGen.Closure
, CodeGen.Context
, CodeGen.DTrace
, CodeGen.Expr
, CodeGen.Function
, CodeGen.GC
, CodeGen.Header
, CodeGen.Main
, CodeGen.MethodDecl
, CodeGen.Preprocessor
, CodeGen.Program
, CodeGen.Shared
, CodeGen.Trace
, CodeGen.Type
, CodeGen.Typeclasses
, Identifiers
, Literate
, Makefile
, ModuleExpander
, Optimizer.Optimizer
, Parser.Parser
, SystemUtils
, Typechecker.Capturechecker
, Typechecker.Environment
, Typechecker.Prechecker
, Typechecker.TypeError
, Typechecker.Typechecker
, Typechecker.Util
, Types
, Utils