-
Notifications
You must be signed in to change notification settings - Fork 1
/
termo-hs.cabal
63 lines (53 loc) · 1.5 KB
/
termo-hs.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
cabal-version: 3.0
name: termo-hs
version: 0.1.0.0
synopsis: Jogue Termo na linha de comando
-- A longer description of the package.
-- description:
homepage:
-- A URL where users can report bugs.
-- bug-reports:
license: ISC
license-file: LICENSE
author: Valdson Francisco Silva Santos Júnior
maintainer: [email protected]
-- A copyright notice.
-- copyright:
category: Game
extra-source-files: CHANGELOG.md
common shared
ghc-options:
-Wall
-Wunused-packages
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
build-depends: base ^>=4.17.2.1, text
default-language: Haskell2010
executable termo-hs
import: shared
main-is: Main.hs
-- Modules included in this executable, other than Main.
-- other-modules:
build-depends:
termo-hs,
random
hs-source-dirs: app
library
import: shared
exposed-modules: Game
build-depends:
array,
containers,
mtl ^>=2.3.1,
pretty-terminal,
transformers
hs-source-dirs: src
test-suite termo-hs-test
import: shared
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Main.hs
build-depends: termo-hs, tasty, tasty-hunit