forked from Jamedjo/bindings-cef3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bindings-cef3.cabal
80 lines (76 loc) · 2.96 KB
/
bindings-cef3.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
name: bindings-cef3
version: 0.1.0
synopsis: Raw bindings for Chromium Embedded Framework CEF3
description:
Bindings for the low level C API of the Chromium Embedded
Framework, CEF3. See:
.
<https://code.google.com/p/chromiumembedded/>
homepage: https://github.com/fluffynukeit/bindings-cef3
license: BSD3
license-file: LICENSE
author: Daniel Austin
maintainer: Daniel Austin
category: FFI
build-type: Simple
extra-source-files: README.md
, cbits/include/*.h
, cbits/include/internal/*.h
, cbits/include/capi/*.h
, cbits/include/wrapper/*.h
, mkCallbacks.pl
, default.nix
cabal-version: >=1.10
bug-reports: https://github.com/fluffynukeit/bindings-cef3/issues
flag buildExamples
description: Build example executable
default: False
library
exposed-modules: Bindings.CEF3
other-modules: Bindings.CEF3.Internal.CefString,
Bindings.CEF3.Internal.CefStringTypes,
Bindings.CEF3.Internal.CefStringList,
Bindings.CEF3.Internal.CefStringMap,
Bindings.CEF3.Internal.CefStringMultimap,
Bindings.CEF3.Internal.CefTypes,
Bindings.CEF3.Internal.CefTime,
Bindings.CEF3.Internal.CefTypesWindows,
Bindings.CEF3.Internal.CefTypesLinux,
Bindings.CEF3.Internal.CefTypesMac
include-dirs: cbits,
cbits/include,
cbits/include/capi
if !os(darwin) && !os(windows) {
pkgconfig-depends: gtk+-2.0
}
frameworks: AppKit
build-depends: base >=4.7 && <4.8,
bindings-DSL >= 1.0.16 && < 1.1
hs-source-dirs: src
default-extensions: ForeignFunctionInterface
build-tools: hsc2hs
default-language: Haskell2010
executable cefcapi
if flag(buildExamples)
build-depends: base >=4.7 && <4.8,
bindings-cef3 >0.1 && <0.2,
bindings-DSL >= 1.0.16 && < 1.1,
unix
else
buildable: False
hs-source-dirs: src
main-is: Main.hs
other-modules: Gtk
hs-source-dirs: cefcapi
extra-lib-dirs: ./
extra-libraries: cef, gcrypt, cups, cap, udev, stdc++, gcc_s
pkgconfig-depends: x11, xrender, xtst, xi, xcomposite, xfixes, xdamage,
xcursor, xext, nss, expat, alsa, dbus-glib-1, gconf-2.0,
gtk+-2.0
ghc-options: -Wall -threaded -optl-Wl,-rpath,$ORIGIN
default-extensions: ForeignFunctionInterface
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/fluffynukeit/bindings-cef3
branch: master