packages feed

stack-3.7.1: src/windows/Stack/Constants/UsrLibDirs.hs

{-# LANGUAGE NoImplicitPrelude #-}

{-|
Module      : Stack.Constants.UsrLibDirs
License     : BSD-3-Clause

The module of this name differs as between Windows and non-Windows builds. This
is the Windows version.
-}

module Stack.Constants.UsrLibDirs
  ( libDirs
  , usrLibDirs
  ) where

import          Stack.Prelude

-- | Used in Stack.Setup for detecting libc.musl-x86_64.so.1, see comments at
-- use site
libDirs :: [Path Abs Dir]
libDirs = []

-- | Used in Stack.Setup for detecting libtinfo, see comments at use site
usrLibDirs :: [Path Abs Dir]
usrLibDirs = []