[CMake] Treating LLVM_INCLUDE_TOOLS, which is a bool, as a string to change behaviors...
authorChris Bieneman <beanz@apple.com>
Mon, 22 Jun 2015 21:58:02 +0000 (21:58 +0000)
committerChris Bieneman <beanz@apple.com>
Mon, 22 Jun 2015 21:58:02 +0000 (21:58 +0000)
Summary: I don't think anyone is relying on this behavior for bootstrapping (because I don't think it works), but if you do need it, speak now or forever hold your peace.

Reviewers: chapuni, samsonov

Reviewed By: samsonov

Subscribers: llvm-commits

Differential Revision: http://reviews.llvm.org/D10613

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240344 91177308-0d34-0410-b5e6-96231b3b80d8

tools/CMakeLists.txt

index 7859b49c9de740a68dad29e1a8b69b5adf33b98b..c9c5a1fdfa083db426996593807812b6ecd2b1f5 100644 (file)
@@ -75,14 +75,11 @@ add_llvm_tool_subdirectory(gold)
 
 add_llvm_external_project(clang)
 add_llvm_external_project(llgo)
+add_llvm_external_project(lld)
+add_llvm_external_project(lldb)
 
-if( NOT LLVM_INCLUDE_TOOLS STREQUAL "bootstrap-only" )
-  add_llvm_external_project(lld)
-  add_llvm_external_project(lldb)
-
-  # Automatically add remaining sub-directories containing a 'CMakeLists.txt'
-  # file as external projects.
-  add_llvm_implicit_external_projects()
-endif()
+# Automatically add remaining sub-directories containing a 'CMakeLists.txt'
+# file as external projects.
+add_llvm_implicit_external_projects()
 
 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE)