Improve online docs for `includes:` field
[cabal.git] / cabal-testsuite / PackageTests / Check / Cond / After / pkg.cabal
blob3d4925b9a2635a6221c987c97119a119d58c7ec6
1 cabal-version: 3.0
2 name: pkg
3 synopsis: synopsis
4 description: description
5 version: 0
6 category: example
7 maintainer: none@example.com
8 license: GPL-3.0-or-later
10 flag my-flag
11   description: Test for branches.
12   default: False
13   manual: True
15 executable exe
16   if os(windows)
17     ghc-options: -pgml misc/static-libstdc++
19   if flag(my-flag)
20     main-is: Main.hs
21     build-depends: async, unix
22     c-sources: executable/link.c
23   else
24     main-is: ParallelMain.hs
26   default-language: Haskell2010