Skip to content
Snippets Groups Projects
Commit a717ae5d authored by Fatih Uzunoğlu's avatar Fatih Uzunoğlu Committed by Jean-Baptiste Kempf
Browse files

qt: workaround for `undefined reference to `qt_version_tag'` error

KF6WindowSystem requires Qt6Gui, but not Qt6Core.
And Qt6Gui does not require Qt6Core.

The symbol `qt_version_tag` is available in Qt6Core.
parent 7c260ce9
No related branches found
No related tags found
1 merge request!5415qt: workaround for `undefined reference to `qt_version_tag'` error
Pipeline #472153 passed with warnings with stages
in 46 minutes and 9 seconds
......@@ -623,7 +623,7 @@ if HAVE_KF6WINDOWSYSTEM
libqt_plugin_la_CPPFLAGS += -DQT_HAS_KWINDOWSYSTEM_PLUGIN
libqt_kwindowsystem_plugin_la_CXXFLAGS = $(AM_CXXFLAGS) $(KF6WINDOWSYSTEM_CFLAGS)
libqt_kwindowsystem_plugin_la_LIBADD = $(KF6WINDOWSYSTEM_LIBS)
libqt_kwindowsystem_plugin_la_LIBADD = $(KF6WINDOWSYSTEM_LIBS) $(QT_LIBS)
libqt_kwindowsystem_plugin_la_SOURCES = \
maininterface/kwindowsystem_module.cpp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment