-
Notifications
You must be signed in to change notification settings - Fork 0
/
fegr.cabal
35 lines (30 loc) · 1006 Bytes
/
fegr.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
Name: fegr
Version: 0.1
Author: F.E.G.R
Build-Type: Custom
Cabal-Version: >=1.6
flag test
description: Build test program.
default: False
flag benchmark
description: Build benchmark.
default: False
Executable benchmark
main-is: Benchmark.hs
if flag(benchmark)
hs-source-dirs: src, test
other-modules: Parser.Pretty.Test
build-depends: base, QuickCheck >= 2, ansi-wl-pprint, parsec, filepath
, directory, uniplate, haskell98, containers, mtl
, haskeline, criterion, deepseq, syb
if !flag(benchmark)
buildable: False
Executable test
hs-source-dirs: src, test
other-modules: Parser.Pretty.Test
main-is: Main.hs
build-depends: base, QuickCheck >= 2, ansi-wl-pprint, parsec, filepath
, directory, uniplate, haskell98, containers, mtl
, haskeline, syb
if !flag(test)
buildable: False