cmake build with qt6 (macos) did not include "plugins"

This commit is contained in:
P. De Visschere 2023-12-31 15:30:12 +01:00 committed by Kornel Benko
parent 8d79860ea7
commit 4d02fb7ad7

View File

@ -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)