-
Notifications
You must be signed in to change notification settings - Fork 5
/
haskell-in-haskell.cabal
53 lines (50 loc) · 1.72 KB
/
haskell-in-haskell.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
cabal-version: >=1.10
name: haskell-in-haskell
version: 0.1.0.0
license: MIT
license-file: LICENSE
author: Lucas Meier
maintainer: [email protected]
build-type: Simple
extra-source-files: README.md
library
build-depends: base >=4.13 && <5
, containers >=0.6 && <0.7
, mtl >=2.2 && <2.3
default-language: Haskell2010
default-extensions: NoImplicitPrelude
exposed-modules: Ourlude
, Cmm
, CWriter
, Lexer
, Parser
, Simplifier
, STG
, Typer
, Types
ghc-options: -Wall
hs-source-dirs: src
executable haskell-in-haskell
build-depends: base >=4.13 && <5
, haskell-in-haskell
, pretty-simple >=4.0 && <4.1
default-language: Haskell2010
default-extensions: NoImplicitPrelude
ghc-options: -threaded -rtsopts
main-is: Main.hs
test-suite haskell-in-haskell-test
build-depends: base >=4.13 && <5
, haskell-in-haskell
, tasty >=1.3 && <1.4
, tasty-hunit >=0.10 && <0.11
default-language: Haskell2010
default-extensions: NoImplicitPrelude
hs-source-dirs: test
ghc-options: -threaded -rtsopts
main-is: Suite.hs
other-modules: LexerTest
, ParserTest
, SimplifierTest
, STGTest
, TyperTest
type: exitcode-stdio-1.0