diff options
Diffstat (limited to 'vcpkg/ports/qtbase/env.patch')
| -rw-r--r-- | vcpkg/ports/qtbase/env.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/vcpkg/ports/qtbase/env.patch b/vcpkg/ports/qtbase/env.patch new file mode 100644 index 0000000..6a37167 --- /dev/null +++ b/vcpkg/ports/qtbase/env.patch @@ -0,0 +1,16 @@ +diff --git a/cmake/QtTestHelpers.cmake b/cmake/QtTestHelpers.cmake +index 279ab07dd..951fd3d36 100644 +--- a/cmake/QtTestHelpers.cmake ++++ b/cmake/QtTestHelpers.cmake +@@ -653,9 +653,9 @@ function(qt_internal_collect_command_environment out_path out_plugin_path) + # The regular CMAKE_INSTALL_PREFIX can be different for example when building standalone tests.
+ # Any given CMAKE_INSTALL_PREFIX takes priority over qt_relocatable_install_prefix for the
+ # PATH environment variable.
+- set(install_prefixes "${CMAKE_INSTALL_PREFIX}")
++ set(install_prefixes "${CMAKE_INSTALL_PREFIX}$<$<CONFIG:DEBUG>:/debug>")
+ if(QT_BUILD_INTERNALS_RELOCATABLE_INSTALL_PREFIX)
+- list(APPEND install_prefixes "${QT_BUILD_INTERNALS_RELOCATABLE_INSTALL_PREFIX}")
++ list(APPEND install_prefixes "${QT_BUILD_INTERNALS_RELOCATABLE_INSTALL_PREFIX}$<$<CONFIG:DEBUG>:/debug>")
+ endif()
+
+ file(TO_NATIVE_PATH "${CMAKE_CURRENT_BINARY_DIR}" test_env_path)
|