From: NAKAMURA Takumi Date: Fri, 31 Jan 2014 17:40:06 +0000 (+0000) Subject: llvm/tools: Prune redundant target_link_libraries. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e225c1956233856e5cce40bd61091af1d8f29995;p=oota-llvm.git llvm/tools: Prune redundant target_link_libraries. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200559 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/obj2yaml/CMakeLists.txt b/tools/obj2yaml/CMakeLists.txt index 536c413460f..9c10c048576 100644 --- a/tools/obj2yaml/CMakeLists.txt +++ b/tools/obj2yaml/CMakeLists.txt @@ -6,5 +6,3 @@ set(LLVM_LINK_COMPONENTS add_llvm_utility(obj2yaml obj2yaml.cpp coff2yaml.cpp ) - -target_link_libraries(obj2yaml LLVMSupport) diff --git a/tools/yaml2obj/CMakeLists.txt b/tools/yaml2obj/CMakeLists.txt index 3e2e4b1a250..5e63dfbbe72 100644 --- a/tools/yaml2obj/CMakeLists.txt +++ b/tools/yaml2obj/CMakeLists.txt @@ -8,5 +8,3 @@ add_llvm_utility(yaml2obj yaml2coff.cpp yaml2elf.cpp ) - -target_link_libraries(yaml2obj LLVMSupport)