-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqdoc2psn.cabal
57 lines (54 loc) · 2.4 KB
/
qdoc2psn.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: qdoc2psn
author: Remy Goldschmidt
version: 0.0.1
stability: Experimental
build-type: Simple
cabal-version: >= 1.10
category: PureScript, FFI Tools
copyright: 2016 Remy Goldschmidt <taktoa@gmail.com>
extra-source-files: README.md
maintainer: taktoa@gmail.com
homepage: https://github.com/taktoa/qdoc2psn
bug-reports: https://github.com/taktoa/qdoc2psn/issues
license-file: LICENSE.md
license: MIT
synopsis: Automatically generate FFI bindings for the C++11
backend of PureScript.
description: See the README.
source-repository head
type: git
location: https://github.com/taktoa/qdoc2psn.git
library
build-depends: base == 4.*
, containers == 0.5.*
, xml == 1.3.*
, cereal == 0.5.*
, mtl == 2.2.*
, hpath == 0.8.*
, safe == 0.3.*
, exceptions == 0.8.*
, aeson == 0.11.*
, aeson-pretty == 0.8.*
, zlib == 0.6.*
, store == 0.2.*
, text == 1.2.*
, bytestring == 0.10.*
, ansi-wl-pprint == 0.6.*
, purescript == 0.10.*
, boxes == 0.1.*
default-language: Haskell2010
exposed-modules: QDoc.Parser
QDoc.Cxx
QDoc.Simple
QDoc.Helpers
ghc-options: -Wall
-O2
-fno-warn-type-defaults
-fno-warn-unused-do-bind
ghc-prof-options: -auto-all -prof
hs-source-dirs: src
executable qdoc2psn
build-depends: base, qdoc2psn
default-language: Haskell2010
ghc-options: -Wall -O2 -threaded -g
main-is: src/Main.hs