-
Notifications
You must be signed in to change notification settings - Fork 2
/
iocp.cabal
44 lines (37 loc) · 1.07 KB
/
iocp.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: iocp
version: 0.1
synopsis: Nursery for a GHC IO manager using Windows completion ports
-- description:
homepage: https://github.com/joeyadams/haskell-iocp
license: BSD3
license-file: LICENSE
author: Joey Adams
maintainer: [email protected]
copyright: Copyright (c) Joseph Adams 2012
category: System
build-type: Simple
cabal-version: >=1.8
extra-source-files:
source-repository head
type: git
location: git://github.com/joeyadams/haskell-iocp.git
library
exposed-modules:
IOCP.Clock
IOCP.FFI
IOCP.Manager
IOCP.PSQ
IOCP.Worker
Winsock
c-sources:
cbits/dynamic.c
cbits/iocp.c
cbits/Winsock.c
build-tools: hsc2hs
ghc-options: -Wall -fwarn-tabs -fno-warn-missing-signatures
cc-options: -Wall
build-depends : base == 4.*
, bytestring
, containers
, Win32
, network