Skip to content
This repository has been archived by the owner on Apr 4, 2018. It is now read-only.

Commit

Permalink
Use includes & extra-libraries directive in cabal file.
Browse files Browse the repository at this point in the history
Also add test/ to cabal sdist.
  • Loading branch information
Toralf Wittner committed Jan 23, 2010
1 parent 0ab544a commit e7c042e
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions zeromq-haskell.cabal
@@ -1,8 +1,8 @@
name: zeromq-haskell
version: 0.1
version: 0.1.1
synopsis: bindings to zeromq
description: Bindings to zeromq (http://zeromq.org)
category: System
category: System, FFI
license: LGPL
license-file: LICENSE
author: Toralf Wittner
Expand All @@ -13,17 +13,20 @@ stability: experimental
tested-With: GHC == 6.12.1
cabal-version: >= 1.6.0
build-type: Simple
extra-source-files: README
extra-source-files: README, test/*.hs, test/perf/*.hs

library
exposed-modules: System.ZMQ
other-modules: System.ZMQ.Base
ghc-options: -Wall -O2
extensions: CPP,
ForeignFunctionInterface
ForeignFunctionInterface,
ExistentialQuantification
build-depends: base >= 3 && < 5,
unix,
containers,
bytestring
hs-source-dirs: src
includes: zmq.h
extra-libraries: zmq

0 comments on commit e7c042e

Please sign in to comment.