summaryrefslogtreecommitdiff
path: root/compiler/main/GhcNameVersion.hs
blob: 96e04186a7f29389fb2b36116c35b98e64fe32c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
module GhcNameVersion
  ( GhcNameVersion (..)
  ) where

import GhcPrelude

-- | Settings for what GHC this is.
data GhcNameVersion = GhcNameVersion
  { ghcNameVersion_programName    :: String
  , ghcNameVersion_projectVersion :: String
  }