diff options
author | Eike Ziller <[email protected]> | 2025-01-16 09:08:05 +0100 |
---|---|---|
committer | Eike Ziller <[email protected]> | 2025-01-16 09:08:05 +0100 |
commit | fb1f75750e6c68a42ea9e4062b6f5a07b9e31d1b (patch) | |
tree | 3b59809fd3a154502baa448fffb47342ac8aa284 /src/libs/qtcreatorcdbext | |
parent | d0efa4720873c6cad6c1bc3ab673fc8973484e5f (diff) | |
parent | 0ee72f78f1943c5cc83b21394422689671a74c4e (diff) |
Merge remote-tracking branch 'origin/15.0'
Change-Id: Icedb7d174adc262f3b9d053549195d8ad15f1dd4
Diffstat (limited to 'src/libs/qtcreatorcdbext')
-rw-r--r-- | src/libs/qtcreatorcdbext/CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libs/qtcreatorcdbext/CMakeLists.txt b/src/libs/qtcreatorcdbext/CMakeLists.txt index 8a66629800a..c731495672d 100644 --- a/src/libs/qtcreatorcdbext/CMakeLists.txt +++ b/src/libs/qtcreatorcdbext/CMakeLists.txt @@ -286,7 +286,8 @@ if (_library_enabled) # 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-dap.exe liblldb.dll python311.zip python311.dll) + file(GLOB python_files RELATIVE ${LLVM_TOOLS_BINARY_DIR} "${LLVM_TOOLS_BINARY_DIR}/python*") + foreach(lldb_file lldb.exe lldb-dap.exe liblldb.dll ${python_files}) if (EXISTS ${LLVM_TOOLS_BINARY_DIR}/${lldb_file}) install(FILES ${LLVM_TOOLS_BINARY_DIR}/${lldb_file} DESTINATION bin/clang/bin @@ -298,7 +299,7 @@ if (_library_enabled) install(DIRECTORY ${LLVM_LIBRARY_DIRS}/site-packages DESTINATION bin/clang/lib COMPONENT qtcreatorcdbext - PATTERN _lldb.cp311-win_amd64.pyd EXCLUDE) + PATTERN "_lldb.cp*64.pyd" EXCLUDE) endif() endif() endif() |