aboutsummaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorKaelyn Uhrain <rikka@google.com>2013-08-12 19:54:38 +0000
committerKaelyn Uhrain <rikka@google.com>2013-08-12 19:54:38 +0000
commit70571f43ab9ae399cd005eaee02f4ca1ecbc3a81 (patch)
tree10e8007f3791207dd1f87d46387787dd1044aa9c /unittests
parentf86c13921f6e2f586f4613ab3cb4a84c8693541f (diff)
Add hooks for typo correction to ExternalSemaSource, courtesy of Luke Zarko.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@188196 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/CMakeLists.txt1
-rw-r--r--unittests/Makefile2
2 files changed, 2 insertions, 1 deletions
diff --git a/unittests/CMakeLists.txt b/unittests/CMakeLists.txt
index fed775ef02..479b36f84c 100644
--- a/unittests/CMakeLists.txt
+++ b/unittests/CMakeLists.txt
@@ -19,4 +19,5 @@ if(CLANG_ENABLE_REWRITER)
add_subdirectory(AST)
add_subdirectory(Tooling)
add_subdirectory(Format)
+ add_subdirectory(Sema)
endif()
diff --git a/unittests/Makefile b/unittests/Makefile
index e01a6ac463..542863e591 100644
--- a/unittests/Makefile
+++ b/unittests/Makefile
@@ -23,7 +23,7 @@ PARALLEL_DIRS += Format
endif
ifeq ($(ENABLE_CLANG_REWRITER),1)
-PARALLEL_DIRS += ASTMatchers AST Tooling
+PARALLEL_DIRS += ASTMatchers AST Tooling Sema
endif
ifeq ($(ENABLE_CLANG_STATIC_ANALYZER),1)