-
Notifications
You must be signed in to change notification settings - Fork 0
/
persistent.cabal
44 lines (41 loc) · 1.27 KB
/
persistent.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
name: persistent-test
version: 0.0.0
license: BSD3
license-file: LICENSE
author: Sven Koschnicke
maintainer: Sven Koschnicke
synopsis: Performance testing
description: I'm sure you can say something clever here if you try.
category: Web
stability: Experimental
cabal-version: >= 1.6
build-type: Simple
homepage: http://www.gfxpro.com
Flag hdbc-only
Description: Build the hdbc-only version
Default: False
executable persistent-test.bin
if flag(hdbc-only)
Buildable: False
main-is: persist-test.hs
build-depends: base >= 4 && < 5
, directory
, bytestring
, text
, persistent
, persistent-postgresql
, template-haskell
, transformers
, time
ghc-options: -Wall -threaded
executable hdbc-test.bin
if flag(hdbc-only)
Buildable: True
else
Buildable: False
main-is: hdbc-test.hs
build-depends: base >= 4 && < 5
, HDBC
, HDBC-postgresql
, time
ghc-options: -Wall -threaded