-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhocd.cabal
87 lines (79 loc) · 2.28 KB
/
hocd.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
cabal-version: 2.2
name: hocd
version: 0.1.3.0
synopsis: OpenOCD Haskell interface
description: Support for OpenOCDs TCL interface
homepage: https://github.com/DistRap/hocd
license: BSD-3-Clause
license-file: LICENSE
author: sorki
maintainer: [email protected]
copyright: 2023 sorki
category: Embedded
build-type: Simple
extra-source-files:
LICENSE
README.md
extra-doc-files:
CHANGELOG.md
flag build-readme
default:
False
description:
Build README.lhs example
library
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: HOCD
, HOCD.Command
, HOCD.Error
, HOCD.Monad
, HOCD.Parse
, HOCD.Types
build-depends: base >= 4.7 && < 5
, attoparsec
, bytestring
, containers
, data-default-class
, exceptions
, mtl
, network
, transformers
default-language: Haskell2010
executable hocd-read-mem
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, hocd
, text
default-language: Haskell2010
executable hocd-readme
if !flag(build-readme)
buildable: False
build-depends:
base >=4.12 && <5
, hocd
build-tool-depends:
markdown-unlit:markdown-unlit
default-language: Haskell2010
main-is: README.lhs
ghc-options: -pgmL markdown-unlit -Wall
test-suite hocd-tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: ParseSpec
build-tool-depends:
hspec-discover:hspec-discover
build-depends: base >= 4.7 && < 5
, hocd
, attoparsec
, bytestring
, containers
, hspec
, raw-strings-qq
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/DistRap/hocd