-
Notifications
You must be signed in to change notification settings - Fork 13
/
cxxdraft-htmlgen.cabal
32 lines (31 loc) · 1.18 KB
/
cxxdraft-htmlgen.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
name: cxxdraft-htmlgen
version: 0
synopsis: Converts C++ Standard draft documents from their LaTeX sources to HTML
license: PublicDomain
license-file: LICENSE
author: Eelis
maintainer: [email protected]
category: Text
build-type: Simple
extra-source-files: README
cabal-version: >=1.10
executable cxxdraft-htmlgen
main-is: genhtml.hs
other-modules: Load14882, Render, Util, SectionPages, Toc, Document, LaTeXBase, LaTeXParser, RawDocument, MathJax, Sentences, CxxParser, Pages
other-extensions: OverloadedStrings, RecordWildCards, TupleSections, ViewPatterns
build-depends: base >=4.6
, text >=1.2
, process >=1.1
, directory >=1.2
, hashable >=1.2
, containers >=0.5
, mtl >=2.2
, time >=1.4
, regex-compat-tdfa
, temporary
, parallel
, tagsoup
, monad-parallel
hs-source-dirs: .
default-language: Haskell2010
ghc-options: -Wall -fno-warn-tabs -threaded "-with-rtsopts=-N"