-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshogi.cabal
60 lines (56 loc) · 1.82 KB
/
shogi.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
58
59
60
-- Initial shogi.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: shogi
version: 0.1.0.0
synopsis: Game of shogi in haskell
-- description:
license: BSD3
license-file: LICENSE
author: Julien Tanguy
maintainer: [email protected]
-- copyright:
category: Game
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: Shogi.Board
, Shogi.Game
, Shogi.SFEN
-- other-modules:
-- other-extensions:
build-depends: base >=4.6 && <4.8
, ansi-wl-pprint >= 0.6
, lens >= 4.1
, text >= 0.11
, transformers >= 0.3
, trifecta >= 1.4
hs-source-dirs: lib
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
default-language: Haskell2010
main-is: TestSuite.hs
hs-source-dirs: tests
build-depends: base >=4.6 && <4.8
, shogi
, trifecta >= 1.4
, lens >= 4.1
, tasty >= 0.4
, tasty-hunit >= 0.4
Other-modules:
Shogi.SFEN.Tests
executable shogi
main-is: Main.hs
other-modules: UI
-- other-extensions:
build-depends: base >=4.6 && <4.8
, ansi-wl-pprint >= 0.6
, lens >= 4.1
, ncurses >= 0.2.8
, text >= 0.11
, transformers >= 0.3
, trifecta >= 1.4
, shogi
hs-source-dirs: src
default-language: Haskell2010