-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmoddit.cabal
105 lines (94 loc) · 2.85 KB
/
moddit.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: moddit
version: 0.0.0
license: BSD3
license-file: LICENSE
author: Matthew Elder
maintainer: Matthew Elder
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://moddit.yesodweb.com/
Flag dev
Description: Turn on development settings, like auto-reload templates.
Default: False
Flag library-only
Description: Build for use with "yesod devel"
Default: False
library
if flag(library-only)
Buildable: True
else
Buildable: False
exposed-modules: Application
other-modules: Foundation
Import
Settings
Settings.StaticFiles
Handler.Root
AppState
AppTypes
Forms
ghc-options: -Wall -threaded -O0 -fno-warn-orphans
cpp-options: -DDEVELOPMENT
extensions: TemplateHaskell
QuasiQuotes
CPP
MultiParamTypeClasses
TypeFamilies
OverloadedStrings
DeriveDataTypeable
DisambiguateRecordFields
NamedFieldPuns
executable moddit
if flag(library-only)
Buildable: False
if flag(dev)
cpp-options: -DDEVELOPMENT
ghc-options: -Wall -threaded -O0
else
ghc-options: -Wall -threaded -O2
main-is: main.hs
build-depends: acid-state == 0.6.3
, base
, blaze-html
, blaze-markup
, bytestring
, clientsession
, containers
, hamlet
, ixset
, json
, mime-mail
, monad-control
, mtl
, safe
, safecopy
, shakespeare-css
, shakespeare-js
, shakespeare-text
, text
, template-haskell
, time
, transformers
, wai
, wai-extra
, yaml
, yesod
, yesod-auth
, yesod-core
, yesod-default
, yesod-form
, yesod-platform == 1.0.3.4
, yesod-static
extensions: TemplateHaskell
QuasiQuotes
CPP
MultiParamTypeClasses
TypeFamilies
OverloadedStrings
DeriveDataTypeable
DisambiguateRecordFields
NamedFieldPuns