{-# LANGUAGE CPP #-}
{-# LANGUAGE NoRebindableSyntax #-}
{-# OPTIONS_GHC -fno-warn-missing-import-lists #-}
module Paths_pandoc_plot (
    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,7,0,0] []
bindir, libdir, dynlibdir, datadir, libexecdir, sysconfdir :: FilePath

bindir     = "C:\\Users\\laure\\OneDrive\\Code\\pandoc-plot\\.stack-work\\install\\39f4b6de\\bin"
libdir     = "C:\\Users\\laure\\OneDrive\\Code\\pandoc-plot\\.stack-work\\install\\39f4b6de\\lib\\x86_64-windows-ghc-8.8.3\\pandoc-plot-0.7.0.0-1WuNGCK69iQCVmLZF80JBH"
dynlibdir  = "C:\\Users\\laure\\OneDrive\\Code\\pandoc-plot\\.stack-work\\install\\39f4b6de\\lib\\x86_64-windows-ghc-8.8.3"
datadir    = "C:\\Users\\laure\\OneDrive\\Code\\pandoc-plot\\.stack-work\\install\\39f4b6de\\share\\x86_64-windows-ghc-8.8.3\\pandoc-plot-0.7.0.0"
libexecdir = "C:\\Users\\laure\\OneDrive\\Code\\pandoc-plot\\.stack-work\\install\\39f4b6de\\libexec\\x86_64-windows-ghc-8.8.3\\pandoc-plot-0.7.0.0"
sysconfdir = "C:\\Users\\laure\\OneDrive\\Code\\pandoc-plot\\.stack-work\\install\\39f4b6de\\etc"

getBinDir, getLibDir, getDynLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath
getBinDir = catchIO (getEnv "pandoc_plot_bindir") (\_ -> return bindir)
getLibDir = catchIO (getEnv "pandoc_plot_libdir") (\_ -> return libdir)
getDynLibDir = catchIO (getEnv "pandoc_plot_dynlibdir") (\_ -> return dynlibdir)
getDataDir = catchIO (getEnv "pandoc_plot_datadir") (\_ -> return datadir)
getLibexecDir = catchIO (getEnv "pandoc_plot_libexecdir") (\_ -> return libexecdir)
getSysconfDir = catchIO (getEnv "pandoc_plot_sysconfdir") (\_ -> return sysconfdir)

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