diff options
author | Johannes Gerer <oss@johannesgerer.com> | 2016-10-26 02:07:02 +0200 |
---|---|---|
committer | Johannes Gerer <oss@johannesgerer.com> | 2016-10-26 02:07:02 +0200 |
commit | 675085c2e0b0b851378da08b7d73024766107c87 (patch) | |
tree | 5a927de4a9576aef7e6129b96e74aa5c96f9ffb6 /Setup.hs | |
download | blazeT-675085c2e0b0b851378da08b7d73024766107c87.tar.gz blazeT-675085c2e0b0b851378da08b7d73024766107c87.tar.zst blazeT-675085c2e0b0b851378da08b7d73024766107c87.zip |
Initial
Diffstat (limited to 'Setup.hs')
-rw-r--r-- | Setup.hs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Setup.hs b/Setup.hs new file mode 100644 index 0000000..c67c506 --- /dev/null +++ b/Setup.hs | |||
@@ -0,0 +1,13 @@ | |||
1 | import Distribution.Simple | ||
2 | import Distribution.Simple.Setup | ||
3 | import Distribution.Simple.Haddock | ||
4 | main = do | ||
5 | defaultMainWithHooks simpleUserHooks{ | ||
6 | haddockHook = \p l h f -> haddockHook simpleUserHooks p l h f{ | ||
7 | haddockHoogle = Flag True, | ||
8 | haddockHtml = Flag True, | ||
9 | haddockExecutables = Flag True, | ||
10 | haddockHscolour = Flag True | ||
11 | } | ||
12 | } | ||
13 | |||