ghc-mod/Param.hs
2010-04-28 10:05:45 +09:00

17 lines
307 B
Haskell

module Param where
data Options = Options {
convert :: [String] -> String
, ghc :: FilePath
, ghci :: FilePath
, ghcPkg :: FilePath
, outDir :: FilePath
, outFile :: FilePath
}
outputDir :: String
outputDir = "dist/flymake"
outputFile :: String
outputFile = "dist/flymake/a.out"