forked from ivanperez-keera/SpaceInvaders
-
Notifications
You must be signed in to change notification settings - Fork 1
/
SpaceInvaders.cabal
82 lines (78 loc) · 1.98 KB
/
SpaceInvaders.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
name: SpaceInvaders
version: 0.14.2
cabal-Version: >= 1.10
license: BSD3
license-file: LICENSE
author: Henrik Nilsson, Antony Courtney
maintainer: Ivan Perez <[email protected]>
homepage: http://www.haskell.org/yampa/
category: Game
synopsis: Video game
description: Video game implemented in Yampa.
.
<<https://github.com/ivanperez-keera/SpaceInvaders/blob/develop/screenshots/gameplay.gif?raw=true>>
build-type: Simple
extra-source-files: CHANGELOG
executable spaceInvaders
hs-source-dirs: src
ghc-options : -Wall -fno-warn-name-shadowing
build-Depends: base >= 3 && < 5, array, random, HGL, Yampa >= 0.13.3
, simple-affine-space >= 0.1 && < 0.3
, deepseq >= 1.3.0 && < 1.5
main-is: Main.hs
default-extensions: Arrows
Other-Modules:
Animate
ColorBindings
Colors
Command
Diagnostics
IdentityList
Object
ObjectBehavior
Parser
PhysicalDimensions
RenderLandscape
RenderObject
WorldGeometry
default-language:
Haskell2010
executable wasmBuild
hs-source-dirs: src, src/WasmUtils
ghc-options :
-Wall
-fno-warn-name-shadowing
-Wall
-Wunused-packages
-no-hs-main
-optl-mexec-model=reactor
"-optl-Wl,--export=hs_init,--export=runGameStep,--export=malloc,--export=free"
cpp-options : -DWASM_BUILD
build-Depends: base >= 3 && < 5, array, random, Yampa >= 0.13.3
, simple-affine-space >= 0.1 && < 0.3
, deepseq >= 1.3.0 && < 1.5
main-is: Main.hs
default-extensions: Arrows
Other-Modules:
Animate
ColorBindings
Colors
Command
Diagnostics
IdentityList
Object
ObjectBehavior
Parser
PhysicalDimensions
RenderLandscape
RenderObject
WorldGeometry
WasmImports
HGLSubstitutes
default-language:
Haskell2010
c-sources: cbits/main.c
include-dirs: cbits
source-repository head
type: git
location: git://github.com/ivanperez-keera/SpaceInvaders.git