-
Notifications
You must be signed in to change notification settings - Fork 2
/
brick-tac-toe.cabal
36 lines (33 loc) · 1.04 KB
/
brick-tac-toe.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
name: brick-tac-toe
version: 0.1.0.0
license: MIT
license-file: LICENSE
author: Ranjit Jhala
maintainer: [email protected]
category: Game
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable brick-tac-toe
main-is: Main.hs
build-depends: base >=4.9,
random >=1.1 && <1.2,
containers,
vty,
brick
hs-source-dirs: src
other-modules: View,
Control,
Model,
Model.Board,
Model.Score,
Model.Player
default-language: Haskell2010
ghc-options: -W -threaded
test-suite tests
default-language: Haskell98
type: exitcode-stdio-1.0
hs-source-dirs: tests
ghc-options: -W -threaded
main-is: Test.hs
build-depends: base >=4.9, process