-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmorse.cabal
45 lines (41 loc) · 1.37 KB
/
morse.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
name: morse
version: 0.1.0.0
synopsis: A morse translator in Haskell!
homepage: https://github.com/kutyel/morse#readme
license: BSD3
license-file: LICENSE
author: Flavio Corpa
maintainer: flaviocorpa@gmail.com
copyright: Copyright © 2019 Flavio Corpa
category: Text
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
library
exposed-modules: Morse
ghc-options: -Wall -fwarn-tabs
hs-source-dirs: src
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, containers
, QuickCheck
executable morse
hs-source-dirs: src
main-is: Main.hs
other-modules: Morse
ghc-options: -Wall -fwarn-tabs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, containers
, morse
, QuickCheck
test-suite tests
hs-source-dirs: tests
main-is: Spec.hs
ghc-options: -Wall -fno-warn-orphans
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, containers
, morse
, QuickCheck