hackport-0.5.1: cabal/cabal-testsuite/PackageTests/ForeignLibs/my-foreign-lib.cabal
name: my-foreign-lib
version: 0.1.0.0
license-file: LICENSE
author: Edsko de Vries
maintainer: edsko@well-typed.com
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: MyForeignLib.AnotherVal
build-depends: base
hs-source-dirs: src
default-language: Haskell2010
foreign-library myforeignlib
type: native-shared
if os(windows)
options: standalone
other-modules: MyForeignLib.Hello
MyForeignLib.SomeBindings
build-depends: base, my-foreign-lib
hs-source-dirs: src
c-sources: csrc/MyForeignLibWrapper.c
default-language: Haskell2010