summaryrefslogtreecommitdiff
path: root/utils/mkUserGuidePart/Options/ProgramCoverage.hs
blob: c7b2894668ef5f3412b2764bfdb9b324a8bcd382 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module Options.ProgramCoverage where

import Types

programCoverageOptions :: [Flag]
programCoverageOptions =
  [ flag { flagName = "-fhpc"
         , flagDescription =
           "Turn on Haskell program coverage instrumentation"
         , flagType = DynamicFlag
         }
  , flag { flagName = "-hpcdir dir"
         , flagDescription =
           "Directory to deposit ``.mix`` files during compilation "++
           "(default is ``.hpc``)"
         , flagType = DynamicFlag
         }
  ]