Add test cases that reproduce #7241.
[cabal.git] / cabal-testsuite / PackageTests / PreProcessExtraSources / my.cabal
blobf22e077eccd242b09af34ecc20ed7392ed6980ac
1 name: PreProcessExtraSources
2 version: 0.1
3 license: BSD3
4 author: Ian Ross
5 stability: stable
6 category: PackageTests
7 build-type: Simple
8 Cabal-version: >= 1.2
10 description:
11     Check that preprocessors that generate extra C sources are handled.
13 Library
14     exposed-modules: Foo
15     build-depends: base
17 Executable my-executable
18     main-is: Main.hs
19     other-modules: Foo
20     build-depends: base
22 Test-Suite my-test-suite
23     main-is: Main.hs
24     type: exitcode-stdio-1.0
25     other-modules: Foo
26     build-depends: base
28 Benchmark my-benchmark
29     main-is: Main.hs
30     type: exitcode-stdio-1.0
31     other-modules: Foo
32     build-depends: base