-
Notifications
You must be signed in to change notification settings - Fork 1
/
yesod-slides.cabal
57 lines (51 loc) · 1.62 KB
/
yesod-slides.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
name: yesod-slides
version: 0.1.0
license: BSD3
license-file: LICENSE
author: Hamish Mackenzie
maintainer: Hamish Mackenzie
synopsis: The greatest Yesod web application ever.
description: I'm sure you can say something clever here if you try.
category: Web
stability: Experimental
cabal-version: >= 1.8
build-type: Simple
homepage: http://yesod-slides.yesodweb.com/
Flag production
Description: Build the production executable.
Default: False
Flag devel
Description: Build for use with "yesod devel"
Default: False
library
build-depends: base >= 4 && < 5
, yesod-core >= 0.8 && < 0.9
, yesod-static
, wai-extra
, directory
, bytestring
, text
, template-haskell
, hamlet
, blaze-html
, web-routes
, transformers
, wai
, blaze-builder
, filepath
exposed-modules: Slides
hs-source-dirs: src
executable yesod-slides
build-depends: base >= 4 && < 5
, yesod-slides == 0.1.0
, warp
, wai-extra
, ghcjs-rts
if flag(production)
cpp-options: -DPRODUCTION
ghc-options: -Wall -threaded -O2
else
ghc-options: -Wall -threaded
main-is: yesod-slides.hs
hs-source-dirs: main
ghc-options: -Wall -threaded