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

bindir     = "C:\\Users\\mhafizov\\Projects\\hs\\n2o-hs2\\.stack-work\\install\\c4f08ade\\bin"
libdir     = "C:\\Users\\mhafizov\\Projects\\hs\\n2o-hs2\\.stack-work\\install\\c4f08ade\\lib\\x86_64-windows-ghc-8.4.3\\n2o-protocols-0.11.2-DNihcVRXNwmFWFHqkXzulv"
dynlibdir  = "C:\\Users\\mhafizov\\Projects\\hs\\n2o-hs2\\.stack-work\\install\\c4f08ade\\lib\\x86_64-windows-ghc-8.4.3"
datadir    = "C:\\Users\\mhafizov\\Projects\\hs\\n2o-hs2\\.stack-work\\install\\c4f08ade\\share\\x86_64-windows-ghc-8.4.3\\n2o-protocols-0.11.2"
libexecdir = "C:\\Users\\mhafizov\\Projects\\hs\\n2o-hs2\\.stack-work\\install\\c4f08ade\\libexec\\x86_64-windows-ghc-8.4.3\\n2o-protocols-0.11.2"
sysconfdir = "C:\\Users\\mhafizov\\Projects\\hs\\n2o-hs2\\.stack-work\\install\\c4f08ade\\etc"

getBinDir, getLibDir, getDynLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath
getBinDir = catchIO (getEnv "n2o_protocols_bindir") (\_ -> return bindir)
getLibDir = catchIO (getEnv "n2o_protocols_libdir") (\_ -> return libdir)
getDynLibDir = catchIO (getEnv "n2o_protocols_dynlibdir") (\_ -> return dynlibdir)
getDataDir = catchIO (getEnv "n2o_protocols_datadir") (\_ -> return datadir)
getLibexecDir = catchIO (getEnv "n2o_protocols_libexecdir") (\_ -> return libexecdir)
getSysconfDir = catchIO (getEnv "n2o_protocols_sysconfdir") (\_ -> return sysconfdir)

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