summaryrefslogtreecommitdiff
path: root/unittests/Lex
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2013-12-10 12:40:37 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2013-12-10 12:40:37 +0000
commitd31b98f0a89e0d8cb3a32fb693018ab9d98f3131 (patch)
tree498ec82d6652a0bc81896d7a02a67529440bcda1 /unittests/Lex
parentd2c03c91601f63bc05c4a41ed2baed53f1807616 (diff)
downloadclang-d31b98f0a89e0d8cb3a32fb693018ab9d98f3131.tar.gz
clang-d31b98f0a89e0d8cb3a32fb693018ab9d98f3131.tar.bz2
clang-d31b98f0a89e0d8cb3a32fb693018ab9d98f3131.tar.xz
[CMake] Update target_link_libraries() and LLVM_LINK_COMPONENTS for each CMakeLists.txt.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@196916 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Lex')
-rw-r--r--unittests/Lex/CMakeLists.txt10
1 files changed, 9 insertions, 1 deletions
diff --git a/unittests/Lex/CMakeLists.txt b/unittests/Lex/CMakeLists.txt
index cb3b9275db..461e0d95fc 100644
--- a/unittests/Lex/CMakeLists.txt
+++ b/unittests/Lex/CMakeLists.txt
@@ -1,3 +1,7 @@
+set(LLVM_LINK_COMPONENTS
+ Support
+ )
+
add_clang_unittest(LexTests
LexerTest.cpp
PPCallbacksTest.cpp
@@ -5,5 +9,9 @@ add_clang_unittest(LexTests
)
target_link_libraries(LexTests
- clangLex clangParse clangSema
+ clangAST
+ clangBasic
+ clangLex
+ clangParse
+ clangSema
)