mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 16:47:24 +08:00
60 lines
1.9 KiB
Diff
60 lines
1.9 KiB
Diff
|
From 8f577000b2fe2f5bf5d08e352a2f15f9421f9c82 Mon Sep 17 00:00:00 2001
|
||
|
From: Pavel Labath <labath@google.com>
|
||
|
Date: Thu, 8 Mar 2018 15:52:46 +0000
|
||
|
Subject: [PATCH] Install lldb's SB headers (pr36630)
|
||
|
|
||
|
These were removed in r309021 in what looks like an accidentally
|
||
|
committed change. This brings them back.
|
||
|
|
||
|
I also rename the header component to lldb-headers (instead of
|
||
|
lldb_headers) to match the llvm style and add a special
|
||
|
install-lldb-headers target, which installs just the headers.
|
||
|
|
||
|
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@327016 91177308-0d34-0410-b5e6-96231b3b80d8
|
||
|
---
|
||
|
cmake/modules/LLDBConfig.cmake | 16 ++++++++++------
|
||
|
1 file changed, 10 insertions(+), 6 deletions(-)
|
||
|
|
||
|
diff --git a/cmake/modules/LLDBConfig.cmake b/cmake/modules/LLDBConfig.cmake
|
||
|
index 8f75880dfb..24878b5913 100644
|
||
|
--- a/cmake/modules/LLDBConfig.cmake
|
||
|
+++ b/cmake/modules/LLDBConfig.cmake
|
||
|
@@ -277,27 +277,31 @@ include_directories(BEFORE
|
||
|
|
||
|
if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
|
||
|
install(DIRECTORY include/
|
||
|
- COMPONENT lldb_headers
|
||
|
+ COMPONENT lldb-headers
|
||
|
DESTINATION include
|
||
|
FILES_MATCHING
|
||
|
PATTERN "*.h"
|
||
|
PATTERN ".svn" EXCLUDE
|
||
|
PATTERN ".cmake" EXCLUDE
|
||
|
PATTERN "Config.h" EXCLUDE
|
||
|
- PATTERN "lldb-*.h" EXCLUDE
|
||
|
- PATTERN "API/*.h" EXCLUDE
|
||
|
)
|
||
|
|
||
|
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
|
||
|
- COMPONENT lldb_headers
|
||
|
+ COMPONENT lldb-headers
|
||
|
DESTINATION include
|
||
|
FILES_MATCHING
|
||
|
PATTERN "*.h"
|
||
|
PATTERN ".svn" EXCLUDE
|
||
|
PATTERN ".cmake" EXCLUDE
|
||
|
- PATTERN "lldb-*.h" EXCLUDE
|
||
|
- PATTERN "API/*.h" EXCLUDE
|
||
|
)
|
||
|
+
|
||
|
+ add_custom_target(lldb-headers)
|
||
|
+ set_target_properties(lldb-headers PROPERTIES FOLDER "Misc")
|
||
|
+
|
||
|
+ if (NOT CMAKE_CONFIGURATION_TYPES)
|
||
|
+ add_llvm_install_targets(install-lldb-headers
|
||
|
+ COMPONENT lldb-headers)
|
||
|
+ endif()
|
||
|
endif()
|
||
|
|
||
|
if (NOT LIBXML2_FOUND AND NOT (CMAKE_SYSTEM_NAME MATCHES "Windows"))
|