-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmutagen.cabal
102 lines (96 loc) · 2.22 KB
/
mutagen.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
cabal-version: 2.2
name: mutagen
version: 0.1.0.0
synopsis: Property-based testing framework for Haskell using type-preserving mutations.
description: Please see the README on GitHub at <https://github.com/agustinmista/mutagen#readme>
category: Testing
homepage: https://github.com/OctopiChalmers/mutagen#readme
bug-reports: https://github.com/OctopiChalmers/mutagen/issues
author: Agustin Mista
copyright: 2021 Agustin Mista
maintainer: [email protected]
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/OctopiChalmers/mutagen
flag MUTAGEN_TH_DEBUG
default: False
library
exposed-modules:
Test.Mutagen
Test.Mutagen.Property
Test.Mutagen.Mutant
Test.Mutagen.Mutation
Test.Mutagen.Fragment
Test.Mutagen.Exception
Test.Mutagen.Lazy
Test.Mutagen.Shell
Test.Mutagen.TH
Test.Mutagen.Tracer
Test.Mutagen.Tracer.Plugin
Test.Mutagen.Tracer.Trace
Test.Mutagen.Tracer.TraceLogger
Test.Mutagen.Tracer.Tree
Test.Mutagen.Tracer.Bitmap
other-modules:
Test.Mutagen.Test
Test.Mutagen.Test.Config
Test.Mutagen.Test.State
Test.Mutagen.Test.Loop
Test.Mutagen.Test.Batch
Test.Mutagen.Test.Report
Test.Mutagen.Test.Driver
Test.Mutagen.Test.Terminal
Test.Mutagen.TH.Arbitrary
Test.Mutagen.TH.Mutable
Test.Mutagen.TH.Lazy
Test.Mutagen.TH.Fragmentable
Test.Mutagen.TH.Util
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, containers
, random
, QuickCheck
, pqueue
, extra
, time
, pretty-simple
, pretty-tree
, ansi-terminal
, process
, ghc
, syb
, array
, template-haskell
, th-desugar
, ansi-terminal
ghc-options:
-Wall
default-extensions:
CPP
default-language:
Haskell2010
if flag(MUTAGEN_TH_DEBUG)
cpp-options: -DMUTAGEN_TH_DEBUG
executable test-re
main-is:
Main.hs
hs-source-dirs:
test/re
other-modules:
RE.Types
RE.Match
RE.Spec
default-language:
Haskell2010
ghc-options:
-Wall -O2 -threaded
build-depends:
base >=4.7 && <5
, mutagen