-
Notifications
You must be signed in to change notification settings - Fork 1
/
j.cabal
83 lines (69 loc) · 1.99 KB
/
j.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
81
82
83
cabal-version: 1.18
name: j
version: 0.3.0.1
license: BSD3
license-file: LICENSE
copyright: Copyright: (c) 2020-2021 Vanessa McHale
maintainer: [email protected]
author: Vanessa McHale
synopsis: J in Haskell
description: Haskell library for calling J
category: Interpreters, FFI, Array, J
build-type: Simple
extra-doc-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/vmchale/j-hs
library
exposed-modules: Language.J
hs-source-dirs: src
default-language: Haskell2010
other-extensions: FlexibleContexts OverloadedStrings
ghc-options: -Wall
build-depends:
base >=4.8 && <5,
bytestring >=0.10,
repa >=3.2.5.0,
vector >=0.5
if !os(windows)
build-depends: unix >=2.7.0.0
else
build-depends: Win32
if !impl(ghc >=8.0)
build-depends: semigroups
if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities
if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists
if impl(ghc >=8.2)
ghc-options: -Wcpp-undef
if impl(ghc >=8.10)
ghc-options: -Wunused-packages
test-suite j-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
default-language: Haskell2010
other-extensions: CPP OverloadedStrings
ghc-options: "-with-rtsopts -K1K" -Wall
build-depends:
base >=4.9,
j,
tasty,
tasty-hunit,
repa,
bytestring
if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities
if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists
if impl(ghc >=8.2)
ghc-options: -Wcpp-undef
if impl(ghc >=8.10)
ghc-options: -Wunused-packages