-
Notifications
You must be signed in to change notification settings - Fork 0
/
TetrisAttack.cabal
executable file
·53 lines (51 loc) · 1.85 KB
/
TetrisAttack.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
-- Initial TetrisAttack.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: TetrisAttack
version: 0.1.0.0
synopsis: A Tetris Attack clone
-- description:
license: MIT
license-file: LICENSE
author: Pavel Krajcevski
maintainer: [email protected]
-- copyright:
category: Game
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
data-dir: Assets
data-files: cursor.png
element_blue_square.png
element_green_square.png
element_purple_square.png
element_red_square.png
element_yellow_square.png
executable TetrisAttack
main-is: Main.hs
other-modules: Paths_TetrisAttack
TetrisAttack.Constants
TetrisAttack.Tile
TetrisAttack.Board
TetrisAttack.AI
TetrisAttack.Board.Combos
TetrisAttack.Board.Gravity
TetrisAttack.Board.Swap
TetrisAttack.Board.Types
TetrisAttack.Cursor
TetrisAttack.Game
TetrisAttack.Grid
ghc-options: -Wall -rtsopts -Werror -O3
build-depends: base > 4.6,
GLFW-b,
lambency,
linear,
vector,
containers,
random,
MonadRandom,
netwire >= 5.0.0,
netwire-input,
mtl >= 2.1.2,
filepath
-- hs-source-dirs:
default-language: Haskell2010