diff options
author | Ben Smith <binjimin@gmail.com> | 2017-03-30 14:24:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-30 14:24:17 -0700 |
commit | 06839fe4a1ba21e7c596e77c49b0e8126fe0d9b1 (patch) | |
tree | 916dad4915e2de07fbf31c4fd02b9a8809937a61 | |
parent | ca9ccccd10d1975eb117dd9ce05a189270f2fb01 (diff) | |
download | wabt-06839fe4a1ba21e7c596e77c49b0e8126fe0d9b1.tar.gz wabt-06839fe4a1ba21e7c596e77c49b0e8126fe0d9b1.tar.bz2 wabt-06839fe4a1ba21e7c596e77c49b0e8126fe0d9b1.zip |
Don't force color diagnostics on Clang (#380)
It breaks my Vim workflow :) But seriously, we should just figure out a
nicer way to handle this with Ninja if that's what we want.
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2da71f58..0a9d2089 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -110,10 +110,6 @@ else () add_definitions(-Wno-clobbered) endif () - if (COMPILER_IS_CLANG) - add_definitions(-fcolor-diagnostics) - endif () - if (NOT EMSCRIPTEN) # try to get the target architecture by compiling a dummy.c file and # checking the architecture using the file command. |