-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrtChess.cabal
38 lines (34 loc) · 902 Bytes
/
rtChess.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
name: rtChess
version: 0.1
cabal-version: >= 1.8
build-type: Simple
author: rtitle
library
hs-source-dirs: src
build-depends: base >= 4,
vector,
mtl
ghc-options: -Wall
exposed-modules: Board,
Moves,
Game,
Utils,
Eval,
MoveOrdering
executable rtChess
hs-source-dirs: src-commandline
main-is: Main.hs
build-depends: base >= 4,
mtl,
split,
rtChess
ghc-options: -Wall
test-suite test-rtChess
hs-source-dirs: test
main-is: Spec.hs
build-depends: base >= 4,
vector,
hspec >= 1.3,
rtChess
type: exitcode-stdio-1.0
ghc-options: -Wall