-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforum.cabal
76 lines (69 loc) · 2.08 KB
/
forum.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
68
69
70
71
72
73
74
75
76
name: forum
version: 0.0.0
license: BSD3
license-file: LICENSE
author: ha oh
maintainer: ha oh
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.6
build-type: Simple
homepage: http://forum.yesodweb.com/
Flag production
Description: Build the production executable.
Default: False
Flag devel
Description: Build for use with "yesod devel"
Default: False
library
if flag(devel)
Buildable: True
else
Buildable: False
exposed-modules: Controller
hs-source-dirs: ., config
other-modules: Forum
Query
Model
Settings
StaticFiles
Handler.Root
Handler.RootPost
executable forum
if flag(devel)
Buildable: False
if flag(production)
cpp-options: -DPRODUCTION
ghc-options: -Wall -threaded -O2
else
ghc-options: -Wall -threaded
main-is: config/forum.hs
hs-source-dirs: ., config
build-depends: base >= 4 && < 5
, yesod >= 0.8 && < 0.9
, yesod-auth
, yesod-static
, yesod-form
, mime-mail
, wai-extra
, directory
, bytestring
, text
, persistent
, persistent-template
, persistent-postgresql >= 0.5 && < 0.6
, template-haskell
, hamlet
, web-routes
, hjsmin
, transformers
, warp
, blaze-builder
, HDBC-postgresql
, HDBC
, time
, monad-loops
, containers
, blaze-html