-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstory-board.cabal
67 lines (62 loc) · 2.35 KB
/
story-board.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
-- Initial story-board.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: story-board
version: 0.1.0.0
-- synopsis:
-- description:
-- license:
license-file: LICENSE
author: Andy Gill
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
exposed-modules: Graphics.Storyboard,
Graphics.Storyboard.Act,
Graphics.Storyboard.Behavior,
Graphics.Storyboard.Box,
Graphics.Storyboard.Highlight,
Graphics.Storyboard.Markup,
Graphics.Storyboard.Slide,
Graphics.Storyboard.Tile,
Graphics.Storyboard.Types
other-modules: Graphics.Storyboard.Bling,
Graphics.Storyboard.Deck,
Graphics.Storyboard.Images,
Graphics.Storyboard.Layout,
Graphics.Storyboard.Literals,
Graphics.Storyboard.Mosaic,
Graphics.Storyboard.Paragraph,
Graphics.Storyboard.Prelude,
Graphics.Storyboard.Prose
build-depends: base >= 4.5 && < 4.14,
blank-canvas >= 0.8 && < 0.9,
containers >= 0.5,
directory >= 1.2,
regex-compat >= 0.95,
semigroups,
stm >= 2.4,
text >= 1.1 && < 1.4,
time >= 1.4,
transformers >= 0.5 && < 0.6
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
flag example
Description: Build the examples
Default: False
executable story-board-example
if flag(example)
buildable: True
else
buildable: True
main-is: Main.hs
build-depends: base >= 4.5 && < 4.14,
story-board == 0.1.*,
transformers >= 0.5 && < 0.6
hs-source-dirs: example
default-language: Haskell2010
ghc-options: -threaded -Wall