-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNyx.cabal
41 lines (38 loc) · 1.04 KB
/
Nyx.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
name: Nyx
version: 0.1
cabal-version: >=1.2
build-type: Simple
author: lykos
data-files:
resources/whitePawn.png
resources/whiteQueen.png
resources/whiteRook.png
resources/whiteKnight.png
resources/whiteBishop.png
resources/whiteKing.png
resources/blackPawn.png
resources/blackQueen.png
resources/blackRook.png
resources/blackKnight.png
resources/blackBishop.png
resources/blackKing.png
resources/darkWood.png
resources/whiteWood.png
resources/border.png
executable Nyx
hs-source-dirs: src
main-is: Main.hs
build-depends: base >= 4,
uni-htk >= 2.2.1.3,
split >= 0.2.3.1,
containers >= 0.5.8.1,
random >= 1.1,
parallel >= 3.1.0.1,
deepseq >= 1.4.2.0
ghc-options: -O3 -threaded -Wall -fno-warn-unused-do-bind
other-modules:
BoardFramework,
Main,
MoveFramework,
PositionEvaluation,
Search