mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 19:59:06 +08:00
0a34f76849
Closes #38835 Closes #39040
27 lines
1021 B
Diff
27 lines
1021 B
Diff
diff --git a/src/corelib/Qt6CoreMacros.cmake b/src/corelib/Qt6CoreMacros.cmake
|
|
index 8a0d07feac..0e6a720c20 100644
|
|
--- a/src/corelib/Qt6CoreMacros.cmake
|
|
+++ b/src/corelib/Qt6CoreMacros.cmake
|
|
@@ -2977,17 +2977,19 @@ function(_qt_internal_setup_deploy_support)
|
|
if(CMAKE_HOST_WIN32)
|
|
+ if(CMAKE_CROSSCOMPILING AND NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
- if(CMAKE_CROSSCOMPILING)
|
|
set(qt_paths_ext ".bat")
|
|
+ elseif(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
+ set(qt_paths_ext ".debug.bat")
|
|
else()
|
|
set(qt_paths_ext ".exe")
|
|
endif()
|
|
else()
|
|
set(qt_paths_ext "")
|
|
endif()
|
|
|
|
|
|
|
|
set(target_qtpaths_path "")
|
|
- set(qtpaths_prefix "${QT6_INSTALL_PREFIX}/${QT6_INSTALL_BINS}")
|
|
+ set(qtpaths_prefix "${QT6_INSTALL_PREFIX}/tools/Qt6/bin")
|
|
get_property(qt_major_version TARGET "${target}" PROPERTY INTERFACE_QT_MAJOR_VERSION)
|
|
if(qt_major_version)
|
|
set(target_qtpaths_with_major_version_path
|