aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/qtcreatorcdbext
diff options
context:
space:
mode:
authorCristian Adam <cristian.adam@qt.io>2023-11-07 17:57:09 +0100
committerCristian Adam <cristian.adam@qt.io>2023-11-15 13:47:46 +0000
commit3939ba93af8c6cc0dbd55cdb23a7c4c48539ac2a (patch)
tree47a98ac8c8cc881ecde48576c54fc50a812c9d9d /src/libs/qtcreatorcdbext
parentf9e2942a80035f044916bd1ce3270381b5a438a3 (diff)
qtcreatorcdbext: Deploy lldb on Windows
Starting with LLVM 17.0.1 we include lldb in the list of packages compiled on Windows. This commit deploys lldb.exe and its Python required machinery. Fixes: QTCREATORBUG-14539 Change-Id: I7f44c537cbaf31bf2f065762bdc9a48dd5efc64d Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: David Schulz <david.schulz@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/libs/qtcreatorcdbext')
-rw-r--r--src/libs/qtcreatorcdbext/CMakeLists.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/libs/qtcreatorcdbext/CMakeLists.txt b/src/libs/qtcreatorcdbext/CMakeLists.txt
index 07a5493de3..97307164f6 100644
--- a/src/libs/qtcreatorcdbext/CMakeLists.txt
+++ b/src/libs/qtcreatorcdbext/CMakeLists.txt
@@ -201,4 +201,24 @@ if (_library_enabled)
COMMAND "${CMAKE_COMMAND}" -E copy_if_different ${deployPythonFiles} "${output_binary_dir}/lib/qtcreatorcdbext${ArchSuffix}/"
VERBATIM
)
+
+ # Deploy lldb.exe and its Python dependency
+ find_package(Clang QUIET)
+ if (LLVM_TOOLS_BINARY_DIR AND LLVM_LIBRARY_DIRS)
+ foreach(lldb_file lldb.exe lldb-vscode.exe liblldb.dll python311.zip python311.dll)
+ if (EXISTS ${LLVM_TOOLS_BINARY_DIR}/${lldb_file})
+ install(FILES ${LLVM_TOOLS_BINARY_DIR}/${lldb_file}
+ DESTINATION bin/clang/bin
+ COMPONENT qtcreatorcdbext)
+ endif()
+ endforeach()
+
+ if (EXISTS ${LLVM_LIBRARY_DIRS}/site-packages)
+ install(DIRECTORY ${LLVM_LIBRARY_DIRS}/site-packages
+ DESTINATION bin/clang/lib
+ COMPONENT qtcreatorcdbext
+ PATTERN _lldb.cp311-win_amd64.pyd EXCLUDE)
+ endif()
+ endif()
+
endif()