-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhtet2d.cabal
33 lines (30 loc) · 897 Bytes
/
htet2d.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
name: htet2d
version: 0.1
synopsis: yet another tetris-like game
author: Julia Jomantaite
license: BSD3
build-type: Simple
cabal-version: >= 1.8
executable htet2d
main-is: Tetris.hs
build-depends: base, random, containers, array, old-time, lens
hs-source-dirs: src
GHC-Options: -O2
library
hs-source-dirs: src
build-depends: base, random, containers, array, old-time, lens
exposed-modules: Tetris2D, TetrisGraphics
test-suite TestAll
type: exitcode-stdio-1.0
ghc-options: -Wall -rtsopts
build-depends: base,
containers,
htet2d,
HUnit,
QuickCheck,
tasty,
tasty-hunit,
tasty-quickcheck,
tasty-th
hs-source-dirs: tests
main-is: TestAll.hs