forked from fpco/odbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
odbc.cabal
76 lines (72 loc) · 1.95 KB
/
odbc.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
name: odbc
synopsis: Haskell binding to the ODBC API, aimed at SQL Server driver
description: Haskell binding to the ODBC API. This has been tested
against the Microsoft SQL Server ODBC drivers. Its test
suite runs on OS X, Windows and Linux.
copyright: FP Complete 2018
maintainer: [email protected]
version: 0.3.0
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files: README.md CHANGELOG doc/style.css doc/patch.sh doc/init.js doc/highlight.pack.js
cabal-version: >=1.10
homepage: https://github.com/fpco/odbc
library
hs-source-dirs: src
ghc-options: -Wall -O2
cc-options: -Wall -Wconversion
exposed-modules:
Database.ODBC.Internal
Database.ODBC.SQLServer
Database.ODBC.Conversion
Database.ODBC.TH
default-language: Haskell2010
if os(mingw32) || os(win32)
extra-libraries: odbc32
else
extra-libraries: odbc
c-sources: cbits/odbc.c
include-dirs: cbits
build-depends:
base >= 4.9.0.0 && < 5,
deepseq,
async,
bytestring,
text,
unliftio-core,
formatting >= 6.3.1,
containers,
time,
semigroups,
transformers,
template-haskell,
parsec,
hashable,
attoparsec
executable odbc
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall -O2 -threaded
default-language: Haskell2010
build-depends:
base >= 4.7 && < 5,
odbc,
bytestring,
text,
time,
optparse-applicative
test-suite test
default-language: Haskell2010
type: exitcode-stdio-1.0
build-depends: base, text, odbc, hspec, QuickCheck, bytestring, time, parsec
ghc-options: -threaded
hs-source-dirs: test
main-is: Main.hs
benchmark space
default-language: Haskell2010
type: exitcode-stdio-1.0
build-depends: base, odbc, weigh, text, async
ghc-options: -threaded -O2
hs-source-dirs: bench
main-is: Space.hs