-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoso.cabal
58 lines (53 loc) · 1.27 KB
/
oso.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
cabal-version: 3.0
name: oso
version: 1.0.0
build-type: Simple
library
build-depends:
, aeson
, aeson-qq
, base
, bytestring
, containers
, inline-c
, streaming
, scientific
, text
, transformers
default-language: Haskell2010
hs-source-dirs: lib
exposed-modules:
Oso
Polar
Polar.C
Polar.C.Context
Polar.C.Types
include-dirs: /home/ollie/work/oso/polar-c-api
extra-libraries: polar
extra-lib-dirs: /home/ollie/work/oso/target/debug
ghc-options:
-Weverything -Wno-prepositive-qualified-module
-Wno-missing-safe-haskell-mode -Wno-implicit-prelude
-Wno-name-shadowing -Wno-unsafe -Wno-all-missed-specialisations
test-suite tests
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: tests
main-is: Main.hs
build-depends:
, aeson
, base
, containers
, hspec
, oso
, streaming
, string-qq
, template-haskell
, text
, transformers
ld-options: "-Wl,-rpath,/home/ollie/work/oso/target/debug"
ghc-options:
-Weverything -Wno-prepositive-qualified-module -Wno-unsafe
-Wno-missing-safe-haskell-mode -Wno-implicit-prelude
-Wno-all-missed-specialisations
other-modules: ShouldMatch