-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcwmtt.cabal
executable file
·57 lines (51 loc) · 1.5 KB
/
cwmtt.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
50
51
52
53
54
55
56
57
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: cwmtt
version: 0.0.0.0
description:
A library for working with the game "5D chess with multiverse time travel"
license: BSD3
license-file: LICENSE
author: Toby Cathcart Burn
maintainer: [email protected]
build-type: Simple
cabal-version: >=1.10
library
exposed-modules:
Game.Chess.TimeTravel.Moves
, Game.Chess.TimeTravel.Datatypes
, Game.Chess.TimeTravel.Utils
, Game.Chess.TimeTravel.Layouts
, Game.Chess.TimeTravel.Parser
, Game.Chess.TimeTravel.PGNParser
, Game.Chess.TimeTravel.Printing
, Game.Chess.TimeTravel.BuildGame
, Game.Chess.TimeTravel.FastCheckmate
, Game.Chess.TimeTravel.FastCheckmateTmp
, Game.Chess.TimeTravel.FastCheckmateSat
, Game.Chess.TimeTravel.SAT
, Game.Chess.TimeTravel.Matching
, Game.Chess.TimeTravel.BFS
build-depends:
base
, containers
, z3
default-language:
Haskell2010
executable cwmtt
hs-source-dirs:
Game/Chess/TimeTravel
main-is:
Main.hs
build-depends:
base
, cwmtt
other-modules:
default-language:
Haskell2010
-- test-suite tests
-- type: exitcode-stdio-1.0
-- main-is: Tests.hs
-- build-depends: base,lens,random-shuffle, transformers, containers, random, Bartok, split, text, case-insensitive
-- default-language: Haskell2010
-- other-modules: Lib,Sample,Datatypes
-- hs-source-dirs: test