This repository has been archived by the owner on Aug 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hs2048.cabal
145 lines (140 loc) · 2.75 KB
/
hs2048.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
author:
Taylor Fausak
bug-reports:
https://github.com/tfausak/hs2048/issues
build-type:
Simple
cabal-version:
>= 1.18
category:
Game
copyright:
2014 Taylor Fausak <taylor@fausak.me>
description:
A <https://github.com/gabrielecirulli/2048 2048> clone in Haskell.
.
This implements the game logic as well as a console interface for playing
it.
extra-source-files:
CHANGELOG.md
README.md
homepage:
https://github.com/tfausak/hs2048
license-file:
LICENSE.md
license:
MIT
maintainer:
taylor@fausak.me
name:
hs2048
synopsis:
A 2048 clone in Haskell.
tested-with:
GHC == 7.6.3
version:
0.1.1
source-repository head
location:
git://github.com/tfausak/hs2048.git
type:
git
library
build-depends:
base < 5
, random == 1.*
default-language:
Haskell2010
exposed-modules:
Hs2048
Hs2048.AI
Hs2048.Board
Hs2048.Direction
Hs2048.Game
Hs2048.Main
Hs2048.Point
Hs2048.Renderer
Hs2048.Settings
Hs2048.Tile
Hs2048.Vector
hs-source-dirs:
library
executable hs2048
build-depends:
base < 5
, hs2048
, random == 1.*
default-language:
Haskell2010
hs-source-dirs:
executable
main-is:
Main.hs
test-suite hspec
build-depends:
base < 5
, hs2048
, hspec == 2.2.*
, HUnit
, QuickCheck
, random == 1.*
default-language:
Haskell2010
ghc-options:
-Wall
hs-source-dirs:
library
test-suite
main-is:
Spec.hs
other-modules:
Hs2048
Hs2048.AI
Hs2048.Board
Hs2048.Direction
Hs2048.Game
Hs2048.Main
Hs2048.Point
Hs2048.Renderer
Hs2048.Settings
Hs2048.Tile
Hs2048.Vector
Hs2048.AISpec
Hs2048.BoardSpec
Hs2048.DirectionSpec
Hs2048.GameSpec
Hs2048.MainSpec
Hs2048.PointSpec
Hs2048.RendererSpec
Hs2048.SettingsSpec
Hs2048.TileSpec
Hs2048.VectorSpec
Hs2048Spec
type:
exitcode-stdio-1.0
benchmark benchmarks
build-depends:
base < 5
, hs2048
, criterion == 1.1.*
, random == 1.*
default-language:
Haskell2010
hs-source-dirs:
benchmark
main-is:
Bench.hs
type:
exitcode-stdio-1.0
other-modules:
Hs2048Bench
Hs2048.AIBench
Hs2048.BoardBench
Hs2048.DirectionBench
Hs2048.GameBench
Hs2048.MainBench
Hs2048.PointBench
Hs2048.RendererBench
Hs2048.SettingsBench
Hs2048.TileBench
Hs2048.VectorBench