-
Notifications
You must be signed in to change notification settings - Fork 0
/
tic-tac-toe.cabal
49 lines (45 loc) · 1.19 KB
/
tic-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
37
38
39
40
41
42
43
44
45
46
47
48
49
cabal-version: 3.0
name: tic-tac-toe
version: 0.1.0.0
-- synopsis:
-- description:
license: MIT
license-file: LICENSE
author: Iain McDonald
maintainer: [email protected]
-- copyright:
category: Game
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
library ttt
exposed-modules: GameLogic.Board GameLogic.Game GameLogic.Types UI.State UI.Renderer UI.Input
ghc-options: -Wall
build-depends: base ^>=4.17.2.1
hs-source-dirs: src
default-language: GHC2021
executable tic-tac-toe
import: warnings
main-is: Main.hs
ghc-options: -Wall -Wno-missing-home-modules
build-depends:
base ^>=4.17.2.1
, ttt
hs-source-dirs: src
default-language: GHC2021
test-suite test
type: exitcode-stdio-1.0
main-is: TestRunner.hs
other-modules: GameLogic.BoardTest GameLogic.GameTest UI.StateTest UI.RendererTest
hs-source-dirs:
test
ghc-options: -Wall
build-depends:
base >=4.7 && <5
, tasty
, tasty-quickcheck
, tasty-hunit
, ttt
default-language: GHC2021