91a2788328
..just causes problems on OSX, see https://github.com/haskell/haskell-ide-engine/issues/333.
22 lines
657 B
Haskell
Executable File
22 lines
657 B
Haskell
Executable File
{-# LANGUAGE CPP #-}
|
|
|
|
#ifndef MIN_VERSION_cabal_doctest
|
|
#error \
|
|
Your version of cabal-install does not seem to support the 'custom-setup' section. \
|
|
Please see https://github.com/DanielG/ghc-mod/wiki/Installing#checking-and-installing-prerequisites for instrutions on how to upgrade. \
|
|
It is also possible that you forgot to install cabal-doctest before running Setup.hs
|
|
#endif
|
|
|
|
import Distribution.Simple
|
|
import Distribution.Simple.Program
|
|
|
|
import Distribution.Extra.Doctest
|
|
|
|
main :: IO ()
|
|
main =
|
|
defaultMainWithHooks $
|
|
addDoctestsUserHook "doctest" $
|
|
simpleUserHooks {
|
|
hookedPrograms = [ simpleProgram "shelltest" ]
|
|
}
|