-
Notifications
You must be signed in to change notification settings - Fork 3
/
2048Haskell.cabal
41 lines (38 loc) · 1.31 KB
/
2048Haskell.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
name: 2048Haskell
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/8Gitbrix/2048Haskell#readme
license: BSD3
license-file: LICENSE
author: Ashwin Jeyaseelan, Sang-Kyun Han
maintainer:
copyright: 2017 Ashwin Jeyaseelan, Sang-Kyun Han
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable 2048Haskell
hs-source-dirs: src
other-modules: Logic
, HumanGame
, BotGame
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, brick
, containers >= 0.5.7.1 && < 0.5.8
, linear >= 1.20.6 && < 1.21
, random >= 1.1 && < 2
, vty
test-suite 2048Haskell-test
type: exitcode-stdio-1.0
hs-source-dirs: test
other-modules: Logic
main-is: Test.hs
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N
source-repository head
type: git
location: https://github.com/8Gitbrix/2048Haskell