Add “Ignore warning” option to cabal check
[cabal.git] / cabal-testsuite / PackageTests / BuildDeps / InternalLibrary1 / my.cabal
blob5fde2ddb0e1082d3c6e6761d8ec5332aeb028737
1 name: InternalLibrary1
2 version: 0.1
3 license: BSD3
4 cabal-version: >= 1.8
5 author: Stephen Blackheath
6 stability: stable
7 category: PackageTests
8 build-type: Simple
10 description:
11     Check for the new (in >= 1.7.1) ability to allow executables to refer to
12     the library defined in the same module.
14 ---------------------------------------
16 Library
17     exposed-modules: MyLibrary
18     build-depends: base, bytestring, pretty
20 Executable lemon
21     main-is: lemon.hs
22     hs-source-dirs: programs
23     build-depends: base, bytestring, pretty, InternalLibrary1