From 4d02fb7ad7a846bebfd8ba5fd37a5453482e768d Mon Sep 17 00:00:00 2001 From: "P. De Visschere" Date: Sun, 31 Dec 2023 15:30:12 +0100 Subject: [PATCH] cmake build with qt6 (macos) did not include "plugins" --- development/cmake/post_install/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/development/cmake/post_install/CMakeLists.txt b/development/cmake/post_install/CMakeLists.txt index f39bb5a763..56c552e4d0 100644 --- a/development/cmake/post_install/CMakeLists.txt +++ b/development/cmake/post_install/CMakeLists.txt @@ -48,6 +48,11 @@ if(LYX_BUNDLE) install_qt_plugin("${QtScope}::QCocoaIntegrationPlugin") endif() + if (APPLE AND LYX_USE_QT MATCHES "QT6") + # With QT6, just copy all the plugins + file(GLOB QT_PLUGIN_DIRECTORIES "${QT_PLUGINS_DIR}/*") + install(DIRECTORY ${QT_PLUGIN_DIRECTORIES} DESTINATION "${qtplugin_dest_dir}/plugins/" COMPONENT Runtime) + endif() # Install code does the following: # - Creates the qt.conf file # - install the platform specific plugins (with Qt5)