Details
-
Bug
-
Resolution: Done
-
P2: Important
-
5.3.0
-
None
-
Windows, Mac, Linux
-
fb3f7b3ede45ca56643082787f091f15d1ab08db
Description
There are *Plugin.cmake files in the build output for Qt5Svg and Qt5PrintSupport. However, when I include the cmake module for Qt5Svg or Qt5PrintSupport, these plugins are not being included. The issue is in this file:
qtbase/mkspecs/features/create_cmake.prf.
This line:
contains($$list(network sql widgets gui), $$MODULE): CMAKE_LOAD_PLUGINS = true
Should be:
contains($$list(network sql widgets gui svg printsupport), $$MODULE): CMAKE_LOAD_PLUGINS = true
That will generate the correct cmake code to make this better.