pass STATIC definition for xcb plugin qt import

This commit is contained in:
dsc 2020-10-09 02:37:05 +02:00
parent 1337091a72
commit 1337baf832
2 changed files with 5 additions and 1 deletions

View File

@ -134,6 +134,10 @@ if(HAVE_SYS_PRCTL_H)
target_compile_definitions(feather PRIVATE HAVE_SYS_PRCTL_H=1)
endif()
if(STATIC)
target_compile_definitions(feather PRIVATE STATIC=1)
endif()
if (NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
target_compile_definitions(feather PRIVATE QT_NO_DEBUG=1)
endif()

View File

@ -14,7 +14,7 @@
#include <QtPlugin>
#if defined(Q_OS_LINUX)
#if defined(Q_OS_LINUX) && defined(STATIC)
Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)
#endif