-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspanout.cabal
38 lines (36 loc) · 1002 Bytes
/
spanout.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
name: spanout
version: 0.1.0.1
category: Game
synopsis: A breakout clone written in netwire and gloss
homepage: https://github.com/vtan/spanout
author: Viktor Tanyi
maintainer: Viktor Tanyi <[email protected]>
license: BSD3
license-file: LICENSE
description:
A breakout clone written in netwire and gloss.
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/vtan/spanout.git
executable spanout
hs-source-dirs: src
main-is: Main.hs
other-modules:
Spanout.Common, Spanout.Gameplay, Spanout.Graphics, Spanout.Level,
Spanout.Main, Spanout.Wire
ghc-options:
-Wall -O2 -funbox-strict-fields -threaded -fprof-auto -rtsopts -with-rtsopts=-N
other-extensions:
Arrows, MultiWayIf, RecordWildCards, TemplateHaskell, TypeOperators
build-depends:
base >=4.6,
mtl >=2.2,
containers >=0.5,
lens >=4.9,
linear >=1.18,
MonadRandom >=0.4,
netwire >=5.0,
gloss >=1.8
default-language: Haskell2010