2015-05-09 09:09:40 +03:00
|
|
|
name: brick
|
|
|
|
version: 0.1
|
|
|
|
synopsis: Testing
|
|
|
|
description: Testing
|
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Jonathan Daugherty
|
|
|
|
maintainer: cygnus@foobox.com
|
|
|
|
copyright: (c) Jonathan Daugherty 2015
|
|
|
|
category: Graphics
|
|
|
|
build-type: Simple
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
library
|
|
|
|
default-language: Haskell2010
|
|
|
|
ghc-options: -Wall -fno-warn-unused-do-bind
|
|
|
|
hs-source-dirs: src
|
2015-05-09 10:45:46 +03:00
|
|
|
exposed-modules: Brick
|
|
|
|
build-depends: base >=4.7 && <4.8,
|
|
|
|
vty >= 5.2.9,
|
2015-05-09 19:43:40 +03:00
|
|
|
transformers,
|
|
|
|
data-default
|
2015-05-09 09:09:40 +03:00
|
|
|
|
|
|
|
executable brick
|
|
|
|
hs-source-dirs: programs
|
|
|
|
ghc-options: -threaded -Wall -fno-warn-unused-do-bind
|
|
|
|
default-language: Haskell2010
|
|
|
|
main-is: Main.hs
|
|
|
|
build-depends: base,
|
|
|
|
brick,
|
2015-05-09 19:56:14 +03:00
|
|
|
vty >= 5.2.9,
|
|
|
|
data-default
|
2015-05-11 02:57:53 +03:00
|
|
|
|
|
|
|
executable brick-rogue
|
|
|
|
hs-source-dirs: programs
|
|
|
|
ghc-options: -threaded -Wall -fno-warn-unused-do-bind
|
|
|
|
default-language: Haskell2010
|
|
|
|
main-is: Rogue.hs
|
|
|
|
build-depends: base,
|
|
|
|
brick,
|
|
|
|
vty >= 5.2.9,
|
|
|
|
data-default,
|
|
|
|
array,
|
|
|
|
random
|