Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2013-12-10 05:41:10 +0400
committerNAKAMURA Takumi <geek4civic@gmail.com>2013-12-10 05:41:10 +0400
commit78f534d689175a36810d9c37b40491c457724201 (patch)
tree9afdee50bf1f5b6780ebacea48bf1db83c35b650 /clang-tools-extra/tool-template
parent76857f82bac72b5685d9c378d133164e1b2a98ac (diff)
[CMake] clang-tools-extra: Update dependencies.
llvm-svn: 196860
Diffstat (limited to 'clang-tools-extra/tool-template')
-rw-r--r--clang-tools-extra/tool-template/CMakeLists.txt11
1 files changed, 10 insertions, 1 deletions
diff --git a/clang-tools-extra/tool-template/CMakeLists.txt b/clang-tools-extra/tool-template/CMakeLists.txt
index cf14a9f524c4..8223e4c8881c 100644
--- a/clang-tools-extra/tool-template/CMakeLists.txt
+++ b/clang-tools-extra/tool-template/CMakeLists.txt
@@ -1,6 +1,15 @@
+set(LLVM_LINK_COMPONENTS
+ Support
+ )
+
add_clang_executable(tool-template
ToolTemplate.cpp
)
target_link_libraries(tool-template
- clangEdit clangTooling clangBasic clangAST clangASTMatchers)
+ clangAST
+ clangASTMatchers
+ clangBasic
+ clangFrontend
+ clangTooling
+ )