-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStart-Page-Generator.cabal
50 lines (46 loc) · 1.25 KB
/
Start-Page-Generator.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: 2.4
name: Start-Page-Generator
version: 0.1.0.0
synopsis: An overengineered start page generator
homepage: https://github.com/Rotendahl/Start-Page-Generator
author: Benjamin Rotendahl
maintainer: [email protected]
extra-source-files:
README.md
library
ghc-options: -Wall
build-depends:
base ^>=4.18.0.0,
text,
parsec
hs-source-dirs: lib
default-language: Haskell2010
exposed-modules:
SiteTypes,
TemplateEngine,
FavoritesParser,
SiteMapper
executable Start-Page-Generator
ghc-options: -Wall
main-is: Main.hs
hs-source-dirs: app
default-language: Haskell2010
build-depends:
base ^>=4.18.0.0,
Start-Page-Generator
test-suite test
ghc-options: -Wall
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules:
FavoritesParserSpec,
TemplateEngineSpec,
ParsedSites
build-depends:
base ^>=4.18.0.0,
HUnit ^>= 1.6,
hspec ==2.*,
Start-Page-Generator
build-tool-depends: hspec-discover:hspec-discover == 2.*