Skip to content

Commit

Permalink
Remove warning flags. These are now default.
Browse files Browse the repository at this point in the history
toktok-stack sets default `-Wall -Werror.`
  • Loading branch information
iphydf committed Mar 22, 2020
1 parent 2727ecc commit 0e88f03
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions BUILD.bazel
Expand Up @@ -8,11 +8,7 @@ project()
haskell_library(
name = "hs-toxcore-c",
srcs = glob(["src/**/*.*hs"]),
compiler_flags = [
"-Wall",
"-Werror",
"-Wno-unused-imports",
],
compiler_flags = ["-Wno-unused-imports"],
src_strip_prefix = "src",
version = "0.2.0",
visibility = ["//visibility:public"],
Expand All @@ -27,11 +23,7 @@ haskell_library(
haskell_binary(
name = "groupbot",
srcs = ["tools/groupbot/Main.hs"],
compiler_flags = [
"-Wall",
"-Werror",
"-Wno-unused-imports",
],
compiler_flags = ["-Wno-unused-imports"],
src_strip_prefix = "tools/groupbot",
deps = [
":hs-toxcore-c",
Expand All @@ -45,11 +37,7 @@ haskell_binary(
hspec_test(
name = "test",
timeout = "short",
compiler_flags = [
"-Wall",
"-Werror",
"-Wno-unused-imports",
],
compiler_flags = ["-Wno-unused-imports"],
deps = [
":hs-toxcore-c",
hazel_library("QuickCheck"),
Expand Down

0 comments on commit 0e88f03

Please sign in to comment.