]> granicus.if.org Git - clang/commitdiff
[CMake] NFC. Add clang-tablegen-targets utility target
authorChris Bieneman <beanz@apple.com>
Fri, 28 Jul 2017 15:33:47 +0000 (15:33 +0000)
committerChris Bieneman <beanz@apple.com>
Fri, 28 Jul 2017 15:33:47 +0000 (15:33 +0000)
By creating this target other projects that depend on clang-generated headers (like LLDB) will no longer be order-dependent on Clang being processed by CMake first.

Also, by creating a dummy of this target in ClangConfig.cmake, projects that can build against out-of-tree clang can freely depend on the target without needing to have conditionals for if clang is in-tree or out-of-tree.

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

CMakeLists.txt
cmake/modules/ClangConfig.cmake.in

index 5d303ee47535ff65122b2ac146fad6569775489e..8f26f2d6bfec09af3660e3632da1e498fe7facfd 100644 (file)
@@ -412,7 +412,8 @@ add_subdirectory(include)
 
 # All targets below may depend on all tablegen'd files.
 get_property(CLANG_TABLEGEN_TARGETS GLOBAL PROPERTY CLANG_TABLEGEN_TARGETS)
-list(APPEND LLVM_COMMON_DEPENDS ${CLANG_TABLEGEN_TARGETS})
+add_custom_target(clang-tablegen-targets DEPENDS ${CLANG_TABLEGEN_TARGETS})
+list(APPEND LLVM_COMMON_DEPENDS clang-tablegen-targets)
 
 # Force target to be built as soon as possible. Clang modules builds depend
 # header-wise on it as they ship all headers from the umbrella folders. Building
index 03bca691c2b64ef9013e43ec9b3cdc7a80347c99..a5a7eae5032825288b460926452e3ac87019f797 100644 (file)
@@ -11,3 +11,10 @@ set(CLANG_INCLUDE_DIRS "@CLANG_CONFIG_INCLUDE_DIRS@")
 
 # Provide all our library targets to users.
 include("@CLANG_CONFIG_EXPORTS_FILE@")
+
+# By creating clang-tablegen-targets here, subprojects that depend on Clang's
+# tablegen-generated headers can always depend on this target whether building
+# in-tree with Clang or not.
+if(NOT TARGET clang-tablegen-targets)
+  add_custom_target(clang-tablegen-targets)
+endif()