-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaztecs-examples.cabal
68 lines (61 loc) · 1.53 KB
/
aztecs-examples.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
cabal-version: 2.4
name: aztecs-examples
version: 0.1.0.0
source-repository head
type: git
location: https://github.com/aztecs-hs/aztecs.git
executable ecs
main-is: ECS.hs
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base,
aztecs >=0.10 && <0.11,
deepseq >=1
executable keyboard
main-is: Keyboard.hs
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base,
aztecs >=0.10 && <0.11,
aztecs-sdl >=0.7 && <0.8,
sdl2
executable mouse
main-is: Mouse.hs
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base,
aztecs >=0.10 && <0.11,
aztecs-sdl >=0.7 && <0.8,
sdl2
executable window
main-is: Window.hs
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base,
aztecs >=0.10 && <0.11,
aztecs-sdl >=0.7 && <0.8,
sdl2
executable image
main-is: Image.hs
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base,
aztecs >=0.10 && <0.11,
aztecs-sdl >=0.7 && <0.8,
aztecs-sdl-image >=0.6 && <0.7,
sdl2
executable sprite
main-is: Sprite.hs
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base,
aztecs >=0.10 && <0.11,
aztecs-sdl >=0.7 && <0.8,
aztecs-sdl-image >=0.6 && <0.7,
sdl2