{-# LANGUAGE CPP #-}
{-# LANGUAGE NoRebindableSyntax #-}
{-# OPTIONS_GHC -fno-warn-missing-import-lists #-}
module Paths_mad_props (
    version,
    getBinDir, getLibDir, getDynLibDir, getDataDir, getLibexecDir,
    getDataFileName, getSysconfDir
  ) where

import qualified Control.Exception as Exception
import Data.Version (Version(..))
import System.Environment (getEnv)
import Prelude

#if defined(VERSION_base)

#if MIN_VERSION_base(4,0,0)
catchIO :: IO a -> (Exception.IOException -> IO a) -> IO a
#else
catchIO :: IO a -> (Exception.Exception -> IO a) -> IO a
#endif

#else
catchIO :: IO a -> (Exception.IOException -> IO a) -> IO a
#endif
catchIO = Exception.catch

version :: Version
version = Version [0,2,0,0] []
bindir, libdir, dynlibdir, datadir, libexecdir, sysconfdir :: FilePath

bindir     = "/Users/chris/dev/mad-props/.stack-work/install/x86_64-osx/ca09905a8b3379f6458d1dba6fdd33238ddddc4438095c91df6a960ac9695040/8.6.5/bin"
libdir     = "/Users/chris/dev/mad-props/.stack-work/install/x86_64-osx/ca09905a8b3379f6458d1dba6fdd33238ddddc4438095c91df6a960ac9695040/8.6.5/lib/x86_64-osx-ghc-8.6.5/mad-props-0.2.0.0-8GaXkRH9o9EE0wlCtSuRU2"
dynlibdir  = "/Users/chris/dev/mad-props/.stack-work/install/x86_64-osx/ca09905a8b3379f6458d1dba6fdd33238ddddc4438095c91df6a960ac9695040/8.6.5/lib/x86_64-osx-ghc-8.6.5"
datadir    = "/Users/chris/dev/mad-props/.stack-work/install/x86_64-osx/ca09905a8b3379f6458d1dba6fdd33238ddddc4438095c91df6a960ac9695040/8.6.5/share/x86_64-osx-ghc-8.6.5/mad-props-0.2.0.0"
libexecdir = "/Users/chris/dev/mad-props/.stack-work/install/x86_64-osx/ca09905a8b3379f6458d1dba6fdd33238ddddc4438095c91df6a960ac9695040/8.6.5/libexec/x86_64-osx-ghc-8.6.5/mad-props-0.2.0.0"
sysconfdir = "/Users/chris/dev/mad-props/.stack-work/install/x86_64-osx/ca09905a8b3379f6458d1dba6fdd33238ddddc4438095c91df6a960ac9695040/8.6.5/etc"

getBinDir, getLibDir, getDynLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath
getBinDir = catchIO (getEnv "mad_props_bindir") (\_ -> return bindir)
getLibDir = catchIO (getEnv "mad_props_libdir") (\_ -> return libdir)
getDynLibDir = catchIO (getEnv "mad_props_dynlibdir") (\_ -> return dynlibdir)
getDataDir = catchIO (getEnv "mad_props_datadir") (\_ -> return datadir)
getLibexecDir = catchIO (getEnv "mad_props_libexecdir") (\_ -> return libexecdir)
getSysconfDir = catchIO (getEnv "mad_props_sysconfdir") (\_ -> return sysconfdir)

getDataFileName :: FilePath -> IO FilePath
getDataFileName name = do
  dir <- getDataDir
  return (dir ++ "/" ++ name)