-
Notifications
You must be signed in to change notification settings - Fork 1
/
aframe-blueprint.cabal
62 lines (52 loc) · 1.74 KB
/
aframe-blueprint.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
name: aframe-blueprint
version: 0.2.0
-- synopsis:
-- description:
license: BSD3
license-file: LICENSE
author: Andy Gill
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
data-files:
static/index.html
library
exposed-modules: Text.AFrame
, Text.AFrame.DSL
, Text.AFrame.WebPage
-- other-modules:
-- other-extensions:
build-depends: base >=4.8 && < 5.0
, text == 1.2.*
, blaze-markup >= 0.7 && < 0.9
, containers >= 0.5 && < 0.7
, unordered-containers == 0.2.*
other-modules: Paths_aframe_blueprint
hs-source-dirs: src
default-language: Haskell2010
executable aframe-blueprint-examples
main-is: Main.hs
build-depends: base >=4.8 && < 5.0
, aframe-blueprint == 0.2.0
, text == 1.2.*
GHC-options: -threaded
hs-source-dirs: examples/src
default-language: Haskell2010
executable aframe-blueprint-draft
main-is: Draft.hs
build-depends: base >=4.8 && < 5.0
, aframe-blueprint == 0.2.0
GHC-options: -threaded
hs-source-dirs: utils
default-language: Haskell2010
Test-Suite test-blueprint
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends: base >= 4.8 && < 5.0
, aframe-blueprint == 0.2.0
, text == 1.2.*
hs-source-dirs: examples/src
default-language: Haskell2010