-
Notifications
You must be signed in to change notification settings - Fork 0
/
flyplanefly.cabal
55 lines (54 loc) · 1.66 KB
/
flyplanefly.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
name: flyplanefly
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/githubuser/mahppybird#readme
license: BSD3
license-file: LICENSE
author: Jared Pon
maintainer: example@example.com
copyright: 2018 Jared Pon
category: Web
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
executable fly-plane-fly
hs-source-dirs: src
main-is: Main.hs
default-language: Haskell2010
ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N -O2
other-modules: FlyPlaneFly
, Logger
, Input
, Renderer
, Physics
, Walls
, WallManager
, PlayerManager
, ScoreManager
, TimeManager
, SceneStateManager
, CameraManager
, AnimationsManager
, SoundManager
, Aabb
, Buttons
, GameVars
, Util
, GuiTransforms
, Animations
, Resources
build-depends: base >= 4.7 && < 5
, sdl2
, sdl2-ttf
, sdl2-image
, sdl2-mixer
, mtl
, StateVar
, linear
, Stream
, random
, clock
, filepath
, text
, lens