#!/usr/bin/env runhaskell

-- I usually compile this with "ghc --make -o setup Setup.hs"

import Distribution.Simple(defaultMain)
main = do putStrLn msg
          defaultMain

msg = "regex-tre needs to compile against the libtre libary from http://laurikari.net/tre/\n\
      \You might also need to edit the end of the regex-tre.cabal file to point at\n\
      \the directories where libtre 'include' and 'lib' have been installed.\n"
