From 6508cb49f26d4412254d4095bf103065c5a94edc Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Sat, 22 Jun 2019 01:50:21 +0000 Subject: [PATCH] [CMake] Delete redundant DEPENDS/LINK_LIBS from LineEditor/XRay The link dependencies are already specified in LLVMBuild.txt git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@364125 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/LineEditor/CMakeLists.txt | 1 - lib/XRay/CMakeLists.txt | 8 -------- 2 files changed, 9 deletions(-) diff --git a/lib/LineEditor/CMakeLists.txt b/lib/LineEditor/CMakeLists.txt index 0d2bada1e84..4935c176765 100644 --- a/lib/LineEditor/CMakeLists.txt +++ b/lib/LineEditor/CMakeLists.txt @@ -9,6 +9,5 @@ add_llvm_library(LLVMLineEditor ${LLVM_MAIN_INCLUDE_DIR}/llvm/LineEditor LINK_LIBS - LLVMSupport ${link_libs} ) diff --git a/lib/XRay/CMakeLists.txt b/lib/XRay/CMakeLists.txt index c667083ed13..84d2914e0c0 100644 --- a/lib/XRay/CMakeLists.txt +++ b/lib/XRay/CMakeLists.txt @@ -17,12 +17,4 @@ add_llvm_library(LLVMXRay ADDITIONAL_HEADER_DIRS ${LLVM_MAIN_INCLUDE_DIR}/llvm/ADT ${LLVM_MAIN_INCLUDE_DIR}/llvm/XRay - - DEPENDS - LLVMSupport - LLVMObject - - LINK_LIBS - LLVMSupport - LLVMObject )