brick/brick.cabal

61 lines
1.7 KiB
Plaintext
Raw Normal View History

2015-05-09 09:09:40 +03:00
name: brick
version: 0.1
synopsis: Testing
description: Testing
license: BSD3
license-file: LICENSE
2015-05-19 05:37:11 +03:00
author: Jonathan Daugherty <cygnus@foobox.com>
maintainer: Jonathan Daugherty <cygnus@foobox.com>
2015-05-09 09:09:40 +03:00
copyright: (c) Jonathan Daugherty 2015
category: Graphics
build-type: Simple
cabal-version: >=1.10
library
default-language: Haskell2010
2015-05-19 05:36:35 +03:00
ghc-options: -Wall -fno-warn-unused-do-bind -O3
2015-05-09 09:09:40 +03:00
hs-source-dirs: src
2015-05-18 04:04:36 +03:00
exposed-modules:
2015-05-18 04:41:38 +03:00
Brick.Border
Brick.Center
Brick.Core
Brick.Edit
Brick.Focus
Brick.List
Brick.Main
Brick.Prim
Brick.Scroll
2015-05-18 04:04:36 +03:00
Brick.Util
other-modules:
Brick.Prim.Internal
2015-05-18 04:04:36 +03:00
build-depends: base >=4.7 && <4.8,
vty >= 5.2.9,
transformers,
data-default,
lens
2015-05-09 09:09:40 +03:00
executable brick
hs-source-dirs: programs
2015-05-19 05:36:35 +03:00
ghc-options: -threaded -Wall -fno-warn-unused-do-bind -O3
2015-05-09 09:09:40 +03:00
default-language: Haskell2010
main-is: Main.hs
build-depends: base,
brick,
2015-05-09 19:56:14 +03:00
vty >= 5.2.9,
2015-05-11 17:55:48 +03:00
data-default,
lens
2015-05-11 02:57:53 +03:00
executable brick-rogue
2015-05-16 08:03:53 +03:00
buildable: False
2015-05-11 02:57:53 +03:00
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