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