diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2016-02-26 23:03:44 +0000 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2016-02-26 23:03:44 +0000 |
commit | d7787ee41ec261db9152d548a9ebbffb4c44c52d (patch) | |
tree | 8bb8d09bc66f7c2dc696d2da9b6445c5304c1155 | |
parent | f64e26726ce5468069093aa86fe973ad4be4816c (diff) | |
download | thermoprint-d7787ee41ec261db9152d548a9ebbffb4c44c52d.tar thermoprint-d7787ee41ec261db9152d548a9ebbffb4c44c52d.tar.gz thermoprint-d7787ee41ec261db9152d548a9ebbffb4c44c52d.tar.bz2 thermoprint-d7787ee41ec261db9152d548a9ebbffb4c44c52d.tar.xz thermoprint-d7787ee41ec261db9152d548a9ebbffb4c44c52d.zip |
Enabled warnings
-rw-r--r-- | bbcode/bbcode.cabal | 3 | ||||
-rw-r--r-- | client/thermoprint-client.cabal | 1 | ||||
-rw-r--r-- | server/thermoprint-server.cabal | 4 | ||||
-rw-r--r-- | spec/thermoprint-spec.cabal | 3 | ||||
-rw-r--r-- | tp-bbcode/thermoprint-bbcode.cabal | 3 | ||||
-rw-r--r-- | webgui/thermoprint-webgui.cabal | 3 |
6 files changed, 12 insertions, 5 deletions
diff --git a/bbcode/bbcode.cabal b/bbcode/bbcode.cabal index 5ef4890..6309fc0 100644 --- a/bbcode/bbcode.cabal +++ b/bbcode/bbcode.cabal | |||
@@ -33,12 +33,13 @@ library | |||
33 | , case-insensitive >=1.2.0 && <2 | 33 | , case-insensitive >=1.2.0 && <2 |
34 | hs-source-dirs: src | 34 | hs-source-dirs: src |
35 | default-language: Haskell2010 | 35 | default-language: Haskell2010 |
36 | ghc-options: -Wall | ||
36 | 37 | ||
37 | Test-Suite tests | 38 | Test-Suite tests |
38 | type: exitcode-stdio-1.0 | 39 | type: exitcode-stdio-1.0 |
39 | hs-source-dirs: test | 40 | hs-source-dirs: test |
40 | main-is: Spec.hs | 41 | main-is: Spec.hs |
41 | ghc-options: -threaded -with-rtsopts=-N | 42 | ghc-options: -Wall -threaded -with-rtsopts=-N |
42 | extensions: OverloadedStrings | 43 | extensions: OverloadedStrings |
43 | , FlexibleInstances | 44 | , FlexibleInstances |
44 | build-depends: base >=4.8.1 && <5 | 45 | build-depends: base >=4.8.1 && <5 |
diff --git a/client/thermoprint-client.cabal b/client/thermoprint-client.cabal index 69091fd..9567971 100644 --- a/client/thermoprint-client.cabal +++ b/client/thermoprint-client.cabal | |||
@@ -32,3 +32,4 @@ library | |||
32 | , transformers >=0.4.2 && <1 | 32 | , transformers >=0.4.2 && <1 |
33 | hs-source-dirs: src | 33 | hs-source-dirs: src |
34 | default-language: Haskell2010 | 34 | default-language: Haskell2010 |
35 | ghc-options: -Wall | ||
diff --git a/server/thermoprint-server.cabal b/server/thermoprint-server.cabal index 34e4bee..2fa04c5 100644 --- a/server/thermoprint-server.cabal +++ b/server/thermoprint-server.cabal | |||
@@ -68,6 +68,7 @@ library | |||
68 | , network-uri >=2.6.0 && <3 | 68 | , network-uri >=2.6.0 && <3 |
69 | hs-source-dirs: src | 69 | hs-source-dirs: src |
70 | default-language: Haskell2010 | 70 | default-language: Haskell2010 |
71 | ghc-options: -Wall | ||
71 | 72 | ||
72 | Test-Suite tests | 73 | Test-Suite tests |
73 | type: exitcode-stdio-1.0 | 74 | type: exitcode-stdio-1.0 |
@@ -102,4 +103,5 @@ executable thermoprint-server | |||
102 | , resourcet >=1.1.7 && <2 | 103 | , resourcet >=1.1.7 && <2 |
103 | , monad-logger >=0.3.13 && <1 | 104 | , monad-logger >=0.3.13 && <1 |
104 | hs-source-dirs: default-conf | 105 | hs-source-dirs: default-conf |
105 | default-language: Haskell2010 \ No newline at end of file | 106 | default-language: Haskell2010 |
107 | ghc-options: -Wall \ No newline at end of file | ||
diff --git a/spec/thermoprint-spec.cabal b/spec/thermoprint-spec.cabal index 7446da3..e236e05 100644 --- a/spec/thermoprint-spec.cabal +++ b/spec/thermoprint-spec.cabal | |||
@@ -47,12 +47,13 @@ library | |||
47 | , time >=1.5.0 && <2 | 47 | , time >=1.5.0 && <2 |
48 | -- hs-source-dirs: | 48 | -- hs-source-dirs: |
49 | default-language: Haskell2010 | 49 | default-language: Haskell2010 |
50 | ghc-options: -Wall | ||
50 | 51 | ||
51 | Test-Suite tests | 52 | Test-Suite tests |
52 | type: exitcode-stdio-1.0 | 53 | type: exitcode-stdio-1.0 |
53 | hs-source-dirs: test | 54 | hs-source-dirs: test |
54 | main-is: Spec.hs | 55 | main-is: Spec.hs |
55 | ghc-options: -threaded -with-rtsopts=-N | 56 | ghc-options: -Wall -threaded -with-rtsopts=-N |
56 | extensions: StandaloneDeriving | 57 | extensions: StandaloneDeriving |
57 | , OverloadedStrings | 58 | , OverloadedStrings |
58 | , OverloadedLists | 59 | , OverloadedLists |
diff --git a/tp-bbcode/thermoprint-bbcode.cabal b/tp-bbcode/thermoprint-bbcode.cabal index 3d47691..8773b89 100644 --- a/tp-bbcode/thermoprint-bbcode.cabal +++ b/tp-bbcode/thermoprint-bbcode.cabal | |||
@@ -32,12 +32,13 @@ library | |||
32 | , bytestring >=0.10.6 && <1 | 32 | , bytestring >=0.10.6 && <1 |
33 | hs-source-dirs: src | 33 | hs-source-dirs: src |
34 | default-language: Haskell2010 | 34 | default-language: Haskell2010 |
35 | ghc-options: -Wall | ||
35 | 36 | ||
36 | Test-Suite tests | 37 | Test-Suite tests |
37 | type: exitcode-stdio-1.0 | 38 | type: exitcode-stdio-1.0 |
38 | hs-source-dirs: test | 39 | hs-source-dirs: test |
39 | main-is: Spec.hs | 40 | main-is: Spec.hs |
40 | ghc-options: -threaded -with-rtsopts=-N | 41 | ghc-options: -Wall -threaded -with-rtsopts=-N |
41 | extensions: StandaloneDeriving | 42 | extensions: StandaloneDeriving |
42 | , OverloadedStrings | 43 | , OverloadedStrings |
43 | , OverloadedLists | 44 | , OverloadedLists |
diff --git a/webgui/thermoprint-webgui.cabal b/webgui/thermoprint-webgui.cabal index b76175d..024bcf6 100644 --- a/webgui/thermoprint-webgui.cabal +++ b/webgui/thermoprint-webgui.cabal | |||
@@ -41,4 +41,5 @@ executable thermoprint-webgui | |||
41 | , time >=1.5.0 && <2 | 41 | , time >=1.5.0 && <2 |
42 | , data-default-class >=0.0 && <1 | 42 | , data-default-class >=0.0 && <1 |
43 | hs-source-dirs: src | 43 | hs-source-dirs: src |
44 | default-language: Haskell2010 \ No newline at end of file | 44 | default-language: Haskell2010 |
45 | ghc-options: -Wall \ No newline at end of file | ||