Browse Source

Fix static build with Qt < 5.14

adaptive-webui-19844
Vladimir Golovnev (Glassez) 4 years ago
parent
commit
3d0543c444
No known key found for this signature in database
GPG Key ID: 52A2C7DEE2DFA6F7
  1. 9
      src/app/CMakeLists.txt

9
src/app/CMakeLists.txt

@ -152,10 +152,11 @@ endif() @@ -152,10 +152,11 @@ endif()
if (GUI)
target_link_libraries(qbt_app PRIVATE qbt_gui)
if ((CMAKE_SYSTEM_NAME STREQUAL "Windows") OR (CMAKE_SYSTEM_NAME STREQUAL "Darwin"))
qt5_import_plugins(qbt_app
INCLUDE Qt5::QSvgIconPlugin
INCLUDE Qt5::QSvgPlugin
)
if (Qt5_VERSION VERSION_LESS 5.14)
set_property(TARGET qbt_app APPEND PROPERTY QT_PLUGINS Qt5::QSvgIconPlugin Qt5::QSvgPlugin)
else()
qt_import_plugins(qbt_app INCLUDE Qt5::QSvgIconPlugin Qt5::QSvgPlugin)
endif()
endif()
endif()

Loading…
Cancel
Save