-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBackgammon.cabal
More file actions
39 lines (32 loc) · 899 Bytes
/
Backgammon.cabal
File metadata and controls
39 lines (32 loc) · 899 Bytes
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
name: Backgammon
version: 0.2.0.0
author: Steven X. Han
maintainer: steven.han@anu.edu.au
category: Game
build-type: Simple
cabal-version: >=1.10
executable Backgammon
main-is:
Main.hs
other-modules:
Move,
Board,
Player,
State,
PlayAsWhite,
PlayAsBlack,
Options
build-depends:
base >= 4.10.1 && < 4.11,
optparse-applicative >= 0.14.0 && < 0.15,
random >= 1.1 && < 1.2,
safe >= 0.3.16 && < 0.4,
QuickCheck >= 2.10.1 && < 2.12,
time >= 1.8.0 && < 1.9,
containers >= 0.5.10 && < 0.6
hs-source-dirs:
src
default-language:
Haskell2010
ghc-options:
-Wall -fwarn-unsafe