forked from parapluu/encore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
encore.cabal
52 lines (50 loc) · 1.63 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
-- 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: [email protected]
-- 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