-
Notifications
You must be signed in to change notification settings - Fork 30
/
game-in-haskell-book.cabal
195 lines (182 loc) · 6.48 KB
/
game-in-haskell-book.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
-- Initial game-in-haskell-book.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: game-in-haskell-book
version: 0.1.1.0
-- synopsis:
description: version working with packages available in 2018 - [email protected]
homepage: https://leanpub.com/gameinhaskell
license: MIT
license-file: LICENSE
author: Elise Huard
maintainer: [email protected] + [email protected]
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=2.0
executable shapes-demo
main-is: Shapes.hs
-- other-modules:
-- other-extensions:
ghc-options: -Wall
build-depends: base >= 4.8 && <=5
, GLFW-b >= 1.4.7.2
, text >= 1.2.1.1
, bytestring
, gloss >= 1.9.3.1
, gloss-rendering >= 1.9.3.1
hs-source-dirs: src
default-language: Haskell2010
executable state-demo
main-is: State.hs
-- other-modules:
-- other-extensions:
ghc-options: -Wall
build-depends: base >=4.8 && <=5
, GLFW-b >= 1.4.7.2
, gloss >= 1.9.3.1
, gloss-rendering >= 1.9.3.1
, mtl
hs-source-dirs: src
default-language: Haskell2010
executable frp-demo
main-is: StateFRP.hs
-- other-modules:
-- other-extensions:
ghc-options: -Wall
build-depends: base >=4.8 && <=5
, GLFW-b >= 1.4.7.2
, gloss >= 1.9.3.1
, gloss-rendering >= 1.9.3.1
, elerea >= 2.8.0
, random >= 1.1
hs-source-dirs: src
default-language: Haskell2010
executable animated
main-is: Animated.hs
-- other-modules:
-- other-extensions:
ghc-options: -Wall
build-depends: base >=4.8 && <=5
, GLFW-b >= 1.4.7.2
, gloss >= 1.9.3.1
, gloss-rendering >= 1.9.3.1
, elerea >= 2.8.0
, random >= 1.1
hs-source-dirs: src
default-language: Haskell2010
executable music
main-is: Music.hs
-- other-modules:
-- other-extensions:
ghc-options: -Wall -threaded
build-depends: base >=4.8 && <=5
, GLFW-b >= 1.4.7.2
, gloss >= 1.9.3.1
, gloss-rendering >= 1.9.3.1
, elerea >= 2.8.0
, random >= 1.1
, ALUT >= 2.4.0.0
hs-source-dirs: src
default-language: Haskell2010
executable extended
main-is: Hunted/Main.hs
other-modules: Hunted.GameTypes
, Hunted.Game
, Hunted.Sound
, Hunted.Graphics
, Hunted.Backend
ghc-options: -Wall
build-depends: base >=4.8 && <=5
, GLFW-b >= 1.4.7.2
, gloss >= 1.9.3.1
, gloss-rendering >= 1.9.3.1
, elerea >= 2.8.0
, random >= 1.1
, ALUT >= 2.4.0.0
, containers
, transformers
hs-source-dirs: src
default-language: Haskell2010
library
exposed-modules: Testing.GameTypes
, Testing.Internals.Game
, Testing.Game
, Testing.Sound
, Testing.Graphics
, Testing.Backend
, Testing.CommandLine
, Testing.Internals.CommandParser
-- other-extensions:
ghc-options: -Wall
build-depends: base >=4.8 && <=5
, GLFW-b >= 1.4.7.2
, gloss >= 1.9.3.1
, gloss-rendering >= 1.9.3.1
, elerea >= 2.8.0
, random >= 1.1
, ALUT >= 2.4.0.0
, containers
, bytestring
, aeson >= 0.8.0.2
, time
, haskeline >= 0.7.2.1
, transformers
, attoparsec >= 0.12.1.6
, text
hs-source-dirs: src
default-language: Haskell2010
executable testing
main-is: Testing/Main.hs
other-modules: Testing.GameTypes
, Testing.Internals.Game
, Testing.Game
, Testing.Sound
, Testing.Graphics
, Testing.Backend
, Testing.CommandLine
, Testing.Internals.CommandParser
build-depends: base >=4.8 && <=5
, elerea >= 2.8.0
, game-in-haskell-book
, GLFW-b >= 1.4.7.2
, gloss >= 1.9.3.1
, gloss-rendering >= 1.9.3.1
, elerea >= 2.8.0
, random >= 1.1
, ALUT >= 2.4.0.0
, containers
, options >= 1.2.1.1
, aeson >= 0.8.0.2
, bytestring
, time
, haskeline >= 0.7.2.1
, transformers
, attoparsec >= 0.12.1.6
, text
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010
test-suite hunit
type: exitcode-stdio-1.0
main-is: HUnit.hs
hs-source-dirs: test
build-depends: base >=4.8 && <=5
, HUnit >= 1.2
, test-framework >= 0.6
, test-framework-hunit >= 0.2
, test-framework-th >= 0.2
, game-in-haskell-book
default-language: Haskell2010
test-suite properties
type: exitcode-stdio-1.0
main-is: Properties.hs
hs-source-dirs: test
other-modules:
build-depends: base >=4.8 && <=5
, QuickCheck >= 2.4
, test-framework >= 0.6
, test-framework-quickcheck2 >= 0.2
, test-framework-th >= 0.2
, game-in-haskell-book
default-language: Haskell2010