-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeacHball.cabal
61 lines (58 loc) · 1.85 KB
/
beacHball.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
name: beacHball
version: 0.1.0.0
-- synopsis:
description: Please see README.md
homepage: https://github.com/e4z9/beacHball#readme
license: BSD3
license-file: LICENSE
author: Eike Ziller
maintainer: [email protected]
copyright: 2016 Eike Ziller
category: Game
build-type: Simple
cabal-version: >=1.10
data-dir: data
data-files: background.png
, ball.png
, cloud1.png
, cloud2.png
, cloud3.png
, cloud4.png
, cloud5.png
, jellee-typeface/Jellee-Roman.ttf
, pole.png
, pole_back.png
, potato_sml.png
, sun.png
extra-source-files: README.md
, stack.yaml
, data/jellee-typeface/Jellee-Roman.otf
, data/jellee-typeface/OFL-FAQ.txt
, data/src/cloud1.png
, data/src/cloud2.png
, data/src/cloud3.png
, data/src/cloud4.png
, data/src/cloud5.png
, data/src/pole.png
, data/src/potato.png
executable beacHball
hs-source-dirs: src
main-is: Main.hs
other-modules: Paths_beacHball
, Graphics
, Input
, Physics
, Scene
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, bytestring
, containers
, JuicyPixels
, lens
, mtl
, netwire
, random
, sdl2
, sdl2-ttf
, text
, vector