First commit, some basic Tetris types
This commit is contained in:
commit
7cdf59d5aa
9 changed files with 266 additions and 0 deletions
45
tetris.cabal
Normal file
45
tetris.cabal
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
name: tetris
|
||||
version: 0.1.0.0
|
||||
-- synopsis:
|
||||
-- description:
|
||||
homepage: https://github.com/SamTay/tetris#readme
|
||||
license: BSD3
|
||||
license-file: LICENSE
|
||||
author: Sam Tay
|
||||
maintainer: sam.chong.tay@gmail.com
|
||||
copyright: 2017 Sam Tay
|
||||
category: Web
|
||||
build-type: Simple
|
||||
extra-source-files: README.md
|
||||
cabal-version: >=1.10
|
||||
|
||||
library
|
||||
hs-source-dirs: src
|
||||
exposed-modules: Tetris
|
||||
build-depends: base >= 4.7 && < 5
|
||||
, brick
|
||||
, containers
|
||||
, microlens
|
||||
, microlens-th
|
||||
default-language: Haskell2010
|
||||
|
||||
executable tetris
|
||||
hs-source-dirs: app
|
||||
main-is: Main.hs
|
||||
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
||||
build-depends: base
|
||||
, tetris
|
||||
default-language: Haskell2010
|
||||
|
||||
test-suite tetris-test
|
||||
type: exitcode-stdio-1.0
|
||||
hs-source-dirs: test
|
||||
main-is: Spec.hs
|
||||
build-depends: base
|
||||
, tetris
|
||||
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
||||
default-language: Haskell2010
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
location: https://github.com/SamTay/tetris
|
||||
Loading…
Add table
Add a link
Reference in a new issue