module Paths_binary_tree (
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,1,0,0] []
bindir, libdir, dynlibdir, datadir, libexecdir, sysconfdir :: FilePath
bindir = "/Users/doisinkidney/Developer/binary-tree/.cabal-sandbox/bin"
libdir = "/Users/doisinkidney/Developer/binary-tree/.cabal-sandbox/lib/x86_64-osx-ghc-8.2.2/binary-tree-0.1.0.0-5kE77xsJTZyBUr3TAvFHdn"
dynlibdir = "/Users/doisinkidney/Developer/binary-tree/.cabal-sandbox/lib/x86_64-osx-ghc-8.2.2"
datadir = "/Users/doisinkidney/Developer/binary-tree/.cabal-sandbox/share/x86_64-osx-ghc-8.2.2/binary-tree-0.1.0.0"
libexecdir = "/Users/doisinkidney/Developer/binary-tree/.cabal-sandbox/libexec"
sysconfdir = "/Users/doisinkidney/Developer/binary-tree/.cabal-sandbox/etc"
getBinDir, getLibDir, getDynLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath
getBinDir = catchIO (getEnv "binary_tree_bindir") (\_ -> return bindir)
getLibDir = catchIO (getEnv "binary_tree_libdir") (\_ -> return libdir)
getDynLibDir = catchIO (getEnv "binary_tree_dynlibdir") (\_ -> return dynlibdir)
getDataDir = catchIO (getEnv "binary_tree_datadir") (\_ -> return datadir)
getLibexecDir = catchIO (getEnv "binary_tree_libexecdir") (\_ -> return libexecdir)
getSysconfDir = catchIO (getEnv "binary_tree_sysconfdir") (\_ -> return sysconfdir)
getDataFileName :: FilePath -> IO FilePath
getDataFileName name = do
dir <- getDataDir
return (dir ++ "/" ++ name)