-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtinyGHC.cabal
50 lines (37 loc) · 1.17 KB
/
tinyGHC.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
cabal-version: 3.0
name: tinyGHC
version: 0.1.0.0
homepage: amralmorsi.github.io
license: GPL-3.0-only
license-file: LICENSE
author: Amr Almorsi
maintainer: [email protected]
category: Development
build-type: Simple
extra-doc-files: CHANGELOG.md
common warnings
ghc-options: -Wall
library
build-depends: base >=4.17.2.1
, containers >=0.6 && <0.7
, mtl >=2.2 && <2.3
default-language: Haskell2010
default-extensions: NoImplicitPrelude
exposed-modules: Ourlude
, Cmm
, CCodeGenerator
, Lexer
, Parser
, ASTSimplifier
, STG
, TypeChecker
, Types
hs-source-dirs: src
executable tinyGHC
main-is: Main.hs
build-depends: base >=4.17.2.1
, containers >=0.6 && <0.7
, pretty-simple >=4.0
, mtl >=2.2 && <2.3
hs-source-dirs: src
default-language: Haskell2010