-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmello.cabal
65 lines (60 loc) · 2.13 KB
/
mello.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
cabal-version: 3.0
name: mello
version: 0.0.0.0
synopsis: Haskell memory inspection, debugging and tracing library
description: Haskell memory inspection, debugging and tracing library
license: GPL-3.0-only
license-file: LICENSE
author: Tito Sacchi
maintainer: Tito Sacchi <[email protected]>
copyright: 2021 Tito Sacchi
build-type: Simple
extra-doc-files: README.md
extra-source-files: test/golden/*.mi-output
, test/golden/*.mi-parsed
, stack.yaml
tested-with: GHC == { 8.8.4, 8.10.5, 9.0.1 }
common common-options
build-depends: base >= 4.13.0.0 && < 5
, bytestring >= 0.10
, megaparsec >= 9
, text
, unix
, process
, unordered-containers
, containers
ghc-options: -Wall
-Wcompat
-Widentities
-Wincomplete-uni-patterns
-Wincomplete-record-updates
if impl(ghc >= 8.0)
ghc-options: -Wredundant-constraints
if impl(ghc >= 8.2)
ghc-options: -fhide-source-paths
if impl(ghc >= 8.4)
ghc-options: -Wmissing-export-lists
-Wpartial-fields
if impl(ghc >= 8.8)
ghc-options: -Wmissing-deriving-strategies
default-language: Haskell2010
library
import: common-options
hs-source-dirs: src
exposed-modules: Mello
, Mello.Memory
, Mello.Gdb.MI
, Mello.Gdb.Session
test-suite mello-tests
import: common-options
ghc-options: -threaded
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: TestMain.hs
other-modules: GdbTests
build-depends: mello
, tasty >= 1.4
, tasty-golden
, tasty-hunit >= 0.10
, filepath
, text