-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasteroids.cabal
29 lines (27 loc) · 885 Bytes
/
asteroids.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
name: asteroids
version: 0.1.0.0
author: Amber Bosman & Sem Spanhaak
maintainer: A.SerranoMena@uu.nl
category: Game
build-type: Simple
cabal-version: >=1.10
executable asteroids
main-is: Main.hs
build-depends: base >= 4 && < 5,
gloss,
random,
containers,
aeson,
bytestring
hs-source-dirs: src
other-modules: Controller
, Model
, View
, Constants
, Movement
, Collision
, Buttons
, DrawGameObject
, HighscoreInteraction
, GameObjects
default-language: Haskell2010