-
Notifications
You must be signed in to change notification settings - Fork 0
/
rpt.cabal
48 lines (44 loc) · 1.32 KB
/
rpt.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
cabal-version: 2.2
name: rpt
version: 0.1
build-type: Simple
author: Hieke Keuning <[email protected]>
common deps
build-depends: base >= 4,
ideas,
containers,
uniplate,
time,
wl-pprint == 1.2.1,
array,
pretty,
parsec,
mtl,
filepath,
directory,
bytestring,
process,
split,
HTF,
HUnit,
QuickCheck
ghc-options: -Wall
-Wno-missing-home-modules
-- FIXME: These are temporary
-Wno-name-shadowing
-Wno-unused-imports
-Wno-unused-matches
-Wno-orphans
-Wno-unused-top-binds
-Wno-unused-local-binds
-Wno-unused-do-bind
hs-source-dirs: src
build-tool-depends: HTF:htfpp
executable rpt
import: deps
main-is: Main.hs
test-suite tests
import: deps
type: exitcode-stdio-1.0
main-is: Tests.hs
hs-source-dirs: src/Test