From a65db7ef6ac0f8e4cacaa851a26cc3a0f4d5860b Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 7 Jan 2021 13:00:53 -0500 Subject: cmake-gui: Restore installation of Qt plugin dependencies Fix logic from commit f1de6f6682 (cmake-gui: Support building against Qt6, 2020-12-17) to restore population of the `QT_PLUGINS` variable used in our `fixup_bundle` call. --- Source/QtDialog/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/QtDialog/CMakeLists.txt b/Source/QtDialog/CMakeLists.txt index 6d0166e..a82884c 100644 --- a/Source/QtDialog/CMakeLists.txt +++ b/Source/QtDialog/CMakeLists.txt @@ -112,7 +112,7 @@ if(CMake_INSTALL_DEPENDENCIES AND (APPLE OR WIN32)) find_package(Qt${INSTALLED_QT_VERSION}${_qt_plugin} QUIET PATHS ${Qt${INSTALLED_QT_VERSION}${_qt_comp}_DIR}) endif() - install_qt_plugin(${_qt_plugin} _plugins_var) + install_qt_plugin("${_qt_plugin}" "${_plugins_var}") endforeach() endforeach() endmacro() -- cgit v0.12