-
Notifications
You must be signed in to change notification settings - Fork 3
/
cci.cabal
87 lines (78 loc) · 2.73 KB
/
cci.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
84
85
86
87
Name: cci
Version: 0.3.1
Synopsis: Bindings for the CCI networking library
Description: The CCI project is an open source communication interface that
aims to provide a simple and portable API, high performance,
scalability for the largest deployments, and robustness in the
presence of faults. It is developed and maintained by a
partnership of research, academic, and industry members.
.
See <https://www.olcf.ornl.gov/center-projects/common-communication-interface/>
and <https://github.com/CCI/cci> for details.
Copyright: (C) 2012-2013 Parallel Scientific Labs, LLC
Maintainer: Facundo Domínguez <[email protected]>
License: BSD3
License-file: LICENSE
Category: Network
Build-Type: Simple
Cabal-Version: >= 1.10
source-repository head
type: git
location: https://github.com/haskell-distributed/haskell-cci.git
Library
default-language: Haskell2010
exposed-modules: Network.CCI
build-depends: base >= 4.3 && < 5,
bytestring >= 0.9
ghc-options: -Wall
extra-libraries: cci
Flag examples
Description: Build examples
Default: False
Executable cci-example-client
default-language: Haskell2010
main-is: examples/Client.hs
ghc-options: -Wall -idist/build
if flag(examples)
build-depends: base, bytestring, cci
else
buildable: False
Executable cci-example-pingpong
default-language: Haskell2010
main-is: examples/pingpong.hs
ghc-options: -Wall -idist/build -threaded
if flag(examples)
build-depends: base, bytestring, cci, time
else
buildable: False
Executable cci-example-server
default-language: Haskell2010
main-is: examples/Server.hs
ghc-options: -Wall -idist/build
if flag(examples)
build-depends: base, bytestring, cci
else
buildable: False
Executable cci-example-registration-benchmark
default-language: Haskell2010
main-is: examples/registration-benchmark.hs
ghc-options: -Wall -idist/build
if flag(examples)
build-depends: base, bytestring, cci, time
else
buildable: False
Test-Suite test-cci
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: test_cci.hs
hs-source-dirs: test
ghc-options: -Wall -fno-warn-name-shadowing -idist/build
build-depends: base, bytestring, cci, containers, binary, process,
filepath, mtl, random, cmdargs < 0.11, pretty
Test-Suite test-worker
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Worker.hs
ghc-options: -Wall -idist/build -threaded
hs-source-dirs: test
build-depends: base, bytestring, cci, time, containers, binary