-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhsv8.cabal
70 lines (65 loc) · 2.09 KB
/
hsv8.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
-- Initial hsv8.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: hsv8
version: 0.1.0.0
synopsis: Library to embed v8 into haskell application
-- description:
homepage: https://github.com/byteally
license: BSD3
license-file: LICENSE
author: Magesh
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
exposed-modules: Language.JavaScript
Language.JavaScript.Internal
-- other-modules:
-- other-extensions:
build-depends: base >=4.11 && <4.12
, inline-c-cpp
, inline-c
, containers
, text
, vector
, aeson
, bytestring
, template-haskell
hs-source-dirs: src
ghc-options: -Wall -lstdc++ -optc-std=c++11
extra-libraries: stdc++ v8_monolith
cxx-options: -std=c++11
include-dirs: /home/magesh/Work/v8-dev/v8/include/ include
extra-lib-dirs: /home/magesh/Work/v8-dev/v8/out.gn/x64.release.sample/obj/
if os(darwin)
ld-options: -Wl,-keep_dwarf_unwind
default-language: Haskell2010
test-suite hsv8-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules: V8Test
hs-source-dirs: test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, hsv8
, text
, vector
, aeson
, bytestring
, tasty
, tasty-discover ==4.1.3
, tasty-hunit
, tasty-quickcheck
, hedgehog
, tasty-hedgehog >= 0.2.0.0
, template-haskell
-- , vector
-- , bytestring
-- , text
-- , time
-- , uuid-types
default-language: Haskell2010