-
Notifications
You must be signed in to change notification settings - Fork 0
/
dama.cabal
27 lines (25 loc) · 899 Bytes
/
dama.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
name: dama
version: 0.0.0.0
license-file: LICENSE
author: Daniel Smith
maintainer: [email protected]
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules:
Dama.Annotator, Dama.Core.Core, Dama.Core.Gen, Dama.Core.Render, Dama.Error, Dama.Fixity.IR,
Dama.Fixity.Resolve, Dama.Lexer.Lexer, Dama.Lexer.Token, Dama.Location, Dama.Parser.AST,
Dama.Parser.Parser
build-depends: base ==4.9.*
, containers ==0.5.*
, mtl ==2.2.*
, transformers ==0.5.*
default-language: Haskell2010
executable dama
hs-source-dirs: app
main-is: Main.hs
ghc-options: -O2 -Wall
build-depends: base ==4.9.*
, dama ==0.0.*
default-language: Haskell2010