[llvm] r189415 - [CMake] Put back the add_llvm_external_project() calls for specific projects.
Argyrios Kyrtzidis
akyrtzi at gmail.com
Tue Aug 27 16:27:56 PDT 2013
Author: akirtzidis
Date: Tue Aug 27 18:27:56 2013
New Revision: 189415
URL: http://llvm.org/viewvc/llvm-project?rev=189415&view=rev
Log:
[CMake] Put back the add_llvm_external_project() calls for specific projects.
This allows setting-up the LLVM_EXTERNAL_* CMake variables that some people are using,
e.g. to set the source directory of the project in a different place.
Modified:
llvm/trunk/tools/CMakeLists.txt
Modified: llvm/trunk/tools/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/CMakeLists.txt?rev=189415&r1=189414&r2=189415&view=diff
==============================================================================
--- llvm/trunk/tools/CMakeLists.txt (original)
+++ llvm/trunk/tools/CMakeLists.txt Tue Aug 27 18:27:56 2013
@@ -64,6 +64,10 @@ endif()
add_llvm_external_project(clang)
if( NOT LLVM_INCLUDE_TOOLS STREQUAL "bootstrap-only" )
+ add_llvm_external_project(lld)
+ add_llvm_external_project(lldb)
+ add_llvm_external_project(polly)
+
# Automatically add remaining sub-directories containing a 'CMakeLists.txt'
# file as external projects.
add_llvm_implicit_external_projects()
More information about the llvm-commits
mailing list