diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-12-10 12:40:37 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-12-10 12:40:37 +0000 |
commit | ac85179219ca168322fe25e5ed4ce174e2f741a4 (patch) | |
tree | fcee3563e985b04de00e0c8510e8b2986f57804e /clang/unittests/Lex | |
parent | 320b4d21c8508721b8426381b7c62447204f9972 (diff) | |
download | bcm5719-llvm-ac85179219ca168322fe25e5ed4ce174e2f741a4.tar.gz bcm5719-llvm-ac85179219ca168322fe25e5ed4ce174e2f741a4.zip |
[CMake] Update target_link_libraries() and LLVM_LINK_COMPONENTS for each CMakeLists.txt.
llvm-svn: 196916
Diffstat (limited to 'clang/unittests/Lex')
-rw-r--r-- | clang/unittests/Lex/CMakeLists.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/clang/unittests/Lex/CMakeLists.txt b/clang/unittests/Lex/CMakeLists.txt index cb3b9275dbd..461e0d95fc8 100644 --- a/clang/unittests/Lex/CMakeLists.txt +++ b/clang/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 ) |