Closed
Description
I'm working on a project and I want to turn on -Werror
. OK, I'll add ghc-options: -Werror
to my cabal.project
. BUT WAIT, this turns on -Werror
for all my dependencies too. Well, the package I'm building is called Cabal
, so I'll put it in a package section package Cabal
.
BUT WAIT: setup dependencies caused an older version of Cabal to be built, which also got -Werror
applied. Disaster!
All I want is a section that lets me finger the packages that are going to be built inplace.