@@ -18,6 +18,7 @@ cabal-version: >=1.10
18
18
19
19
executable example-raindrops
20
20
main-is : Raindrops.hs
21
+ ghc-options : -rtsopts
21
22
-- other-modules:
22
23
hs-source-dirs : examples/raindrops/
23
24
-- other-extensions: Arrows, FlexibleInstances, MultiParamTypeClasses,
@@ -50,6 +51,22 @@ executable example-flappybird
50
51
-- hs-source-dirs:
51
52
default-language : Haskell2010
52
53
54
+ executable example-lava
55
+ main-is : Lava.hs
56
+ -- other-modules:
57
+ hs-source-dirs : examples/Lava/ examples/ libraries
58
+ -- other-extensions: Arrows, FlexibleInstances, MultiParamTypeClasses,
59
+ -- TypeSynonymInstances, FlexibleContexts,
60
+ -- FunctionalDependencies, MultiWayIf
61
+ build-depends : base,
62
+ containers,
63
+ random,
64
+ Yampa,
65
+ SDL,
66
+ SDL-ttf
67
+ -- hs-source-dirs:
68
+ default-language : Haskell2010
69
+
53
70
executable animation-frames
54
71
main-is : Main.hs
55
72
hs-source-dirs : tutorials/gameconcepts/multimedia/animation/
@@ -82,6 +99,7 @@ executable wiimote-connect
82
99
SDL-gfx
83
100
-- hs-source-dirs:
84
101
default-language : Haskell2010
102
+ ghc-options : -rtsopts
85
103
86
104
executable wiimote-buttons
87
105
main-is : Buttons.hs
@@ -93,6 +111,7 @@ executable wiimote-buttons
93
111
SDL-gfx
94
112
-- hs-source-dirs:
95
113
default-language : Haskell2010
114
+ ghc-options : -rtsopts
96
115
97
116
executable wiimote-ir-leds
98
117
main-is : Leds.hs
@@ -103,6 +122,7 @@ executable wiimote-ir-leds
103
122
SDL-gfx
104
123
-- hs-source-dirs:
105
124
default-language : Haskell2010
125
+ ghc-options : -rtsopts
106
126
107
127
executable wiimote-ir-leds-solution
108
128
main-is : Leds-Solution.hs
@@ -113,6 +133,7 @@ executable wiimote-ir-leds-solution
113
133
SDL-gfx
114
134
-- hs-source-dirs:
115
135
default-language : Haskell2010
136
+ ghc-options : -rtsopts
116
137
117
138
executable wiimote-ir-point
118
139
main-is : Point.hs
@@ -123,6 +144,7 @@ executable wiimote-ir-point
123
144
SDL-gfx
124
145
-- hs-source-dirs:
125
146
default-language : Haskell2010
147
+ ghc-options : -rtsopts
126
148
127
149
executable sdl-sdl1-audio-playwave
128
150
main-is : PlayWave.hs
@@ -132,6 +154,7 @@ executable sdl-sdl1-audio-playwave
132
154
SDL-mixer
133
155
-- hs-source-dirs:
134
156
default-language : Haskell2010
157
+ ghc-options : -threaded
135
158
136
159
executable sdl-sdl1-drawing-shapes
137
160
main-is : Shapes.hs
@@ -216,3 +239,13 @@ executable sdl-sdl1-time-example3
216
239
-- hs-source-dirs:
217
240
default-language : Haskell2010
218
241
242
+ executable yampa-fallingball
243
+ main-is : Main.hs
244
+ hs-source-dirs : tutorials/frp/yampa/tutorial004-fallingball/
245
+ build-depends : base,
246
+ Yampa,
247
+ SDL,
248
+ SDL-gfx
249
+ -- hs-source-dirs:
250
+ default-language : Haskell2010
251
+
0 commit comments