brick/brick.cabal

72 lines
2.0 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
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-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
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,
2015-05-11 17:55:48 +03:00
data-default,
lens
2015-05-11 02:57:53 +03:00
2015-05-19 20:23:58 +03:00
executable brick-minimal
hs-source-dirs: programs
ghc-options: -threaded -Wall -fno-warn-unused-do-bind
default-language: Haskell2010
main-is: Minimal.hs
build-depends: base,
brick,
vty >= 5.2.9,
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