aboutsummaryrefslogtreecommitdiffstats
path: root/verifuzz.cabal
diff options
context:
space:
mode:
authorYann Herklotz <git@ymhg.org>2019-04-17 19:19:48 +0100
committerYann Herklotz <git@ymhg.org>2019-04-17 19:19:48 +0100
commit374fb6406dc93c8fb9c8a9b26c7a5c3516af3832 (patch)
treeaa104b606509ee418c4b863a7348746de3610cc9 /verifuzz.cabal
parentf33355b68fa500a8ee9af8ea44923ec43ec5a3cd (diff)
downloadverismith-374fb6406dc93c8fb9c8a9b26c7a5c3516af3832.tar.gz
verismith-374fb6406dc93c8fb9c8a9b26c7a5c3516af3832.zip
Remove -Wall and -Werror, instead use --pedantic
Diffstat (limited to 'verifuzz.cabal')
-rw-r--r--verifuzz.cabal5
1 files changed, 1 insertions, 4 deletions
diff --git a/verifuzz.cabal b/verifuzz.cabal
index dfd5c12..f73c7de 100644
--- a/verifuzz.cabal
+++ b/verifuzz.cabal
@@ -25,7 +25,6 @@ custom-setup
library
hs-source-dirs: src
default-language: Haskell2010
- ghc-options: -Wall
build-tools: alex >=3 && <4
exposed-modules: VeriFuzz
, VeriFuzz.Circuit
@@ -86,7 +85,7 @@ executable verifuzz
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
- ghc-options: -threaded -Wall -Werror
+ ghc-options: -threaded
build-depends: base >= 4.7 && < 5
, shelly >=1.8.0 && <1.9
, verifuzz >= 0.1 && <0.2
@@ -100,7 +99,6 @@ test-suite verifuzz-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Test.hs
- ghc-options: -Wall
other-modules: Unit
, Property
build-depends: base >=4 && <5
@@ -121,7 +119,6 @@ test-suite verifuzz-doctest
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Doctest.hs
- ghc-options: -Wall -Werror
build-depends: base >=4.7 && <5
, doctest >=0.16 && <0.17
, verifuzz