commit | bbd503d792e9a9b3a726d6522962964f9cffb22b | [log] [tgz] |
---|---|---|
author | Yi Kong <[email protected]> | Fri Oct 26 15:02:29 2018 -0700 |
committer | Pirama Arumuga Nainar <[email protected]> | Mon Jan 14 10:24:41 2019 -0800 |
tree | b0fb0f12278e6c01839a1db01fc7add654c4e7ef | |
parent | 96247f3e3f7ac6dea1e1cb3f7b1254f60e60280a [diff] |
Don't build clangd for mingw ... to workaround mingw GCC bug. Bug: 115807768 Change-Id: Ie75198115542e5ebdf3da3e225adf1a9ca887970
diff --git a/CMakeLists.txt b/CMakeLists.txt index c3137ad..ba018e9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -8,7 +8,11 @@ add_subdirectory(clang-doc) add_subdirectory(clang-query) add_subdirectory(clang-move) + +if ( NOT MINGW ) add_subdirectory(clangd) +endif() + add_subdirectory(include-fixer) add_subdirectory(pp-trace) add_subdirectory(tool-template)