-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprawomir.cabal
64 lines (59 loc) · 3.03 KB
/
prawomir.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
54
55
56
57
58
59
60
61
62
63
64
name: prawomir
version: 0.1.0.0
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: .
exposed-modules: ParseXml, Model, Parse, Scratch
ghc-options: -Wall -fno-warn-deprecated-flags -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-orphans -Werror -O2 -rtsopts
default-extensions:
NoImplicitPrelude, TemplateHaskell,
NamedFieldPuns, TupleSections, LambdaCase, MultiWayIf, GADTs, TypeFamilies,
TypeSynonymInstances, FlexibleInstances, UndecidableInstances,
MultiParamTypeClasses,
RankNTypes, DeriveDataTypeable, GeneralizedNewtypeDeriving, DeriveGeneric,
FunctionalDependencies, FlexibleContexts, ScopedTypeVariables
build-depends: base >= 4.7 && < 5
, myprelude, directory, containers, old-locale, old-time, time, mtl,
lens, text, HStringTemplate, bytestring,
hxt, hxt-http, hxt-tagsoup, hxt-unicode, hxt-cache, zlib, megaparsec, nicify-lib,
HStringTemplate, aeson, IntervalMap, tasty, tasty-hunit, tasty-quickcheck, unicode-show
default-language: Haskell2010
test-suite test
default-language: Haskell2010
default-extensions:
NoImplicitPrelude, TemplateHaskell,
NamedFieldPuns, RecordWildCards, TupleSections, LambdaCase, MultiWayIf, GADTs,
TypeSynonymInstances, FlexibleInstances, UndecidableInstances,
MultiParamTypeClasses,
RankNTypes, DeriveDataTypeable, GeneralizedNewtypeDeriving, DeriveGeneric,
FunctionalDependencies, FlexibleContexts, ScopedTypeVariables
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: XmlToModel.hs
build-depends: prawomir, base, myprelude, tasty, tasty-hunit, text, time, containers, nicify-lib, unicode-show, Diff,
neat-interpolation
executable play
hs-source-dirs: play
main-is: Main.hs
ghc-options: -O2 -rtsopts
default-language: Haskell2010
build-depends: base, myprelude==0.7.8.0, prawomir
default-extensions: NamedFieldPuns, TypeSynonymInstances, FlexibleInstances,
TupleSections, LambdaCase, RankNTypes, DeriveDataTypeable,
MultiParamTypeClasses, FunctionalDependencies, FlexibleContexts, ScopedTypeVariables,
NoImplicitPrelude, GeneralizedNewtypeDeriving, MultiWayIf, UndecidableInstances,
TemplateHaskell, GADTs
-- `CleanupXML` is a helper tool for preparing tests
executable CleanupXML
hs-source-dirs: tool/cleanup-xml
main-is: Main.hs
default-language: Haskell2010
build-depends: base, myprelude==0.7.8.0,
directory, containers, time, text, hxt, hxt-http, hxt-unicode, MissingH, prawomir
default-extensions: NamedFieldPuns, TypeSynonymInstances, FlexibleInstances,
TupleSections, LambdaCase, RankNTypes, DeriveDataTypeable,
MultiParamTypeClasses, FunctionalDependencies, FlexibleContexts, ScopedTypeVariables,
NoImplicitPrelude, GeneralizedNewtypeDeriving, MultiWayIf, UndecidableInstances,
TemplateHaskell, GADTs