-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlolita.cabal
40 lines (35 loc) · 1011 Bytes
/
lolita.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
cabal-version: 3.0
name: lolita
version: 0.1.0.0
license: MIT
license-file: LICENSE
author: Victor Velev
maintainer: [email protected]
category: Language
build-type: Simple
common warnings
ghc-options: -Wall
test-suite main
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: ParseTest, WalkTest
build-depends: base,
lolita,
HUnit,
default-language: GHC2021
library
import: warnings
hs-source-dirs: src
exposed-modules: Parse, Objectify, Walk, Codegen
other-modules: MonadT
build-depends: base,
pretty-simple
default-language: GHC2021
executable lolita
import: warnings
hs-source-dirs: src
main-is: Main.hs
other-modules: Parse, Objectify, Walk, Codegen, MonadT
build-depends: base,
default-language: GHC2021