Do not bundle icon themes on Unix/Linux systems.

This commit is contained in:
Martin Rotter 2020-10-25 13:31:21 +01:00
parent 684ee4d2b1
commit 5821d87a85
2 changed files with 7 additions and 3 deletions

View File

@ -26,8 +26,11 @@ DEFINES *= RSSGUARD_DLLSPEC=Q_DECL_EXPORT
CONFIG += unversioned_libname unversioned_soname skip_target_version_ext
RESOURCES += ../../resources/sql.qrc \
../../resources/rssguard.qrc \
../../resources/icons.qrc
../../resources/rssguard.qrc
!unix {
RESOURCES += ../../resources/icons.qrc
}
HEADERS += core/feeddownloader.h \
core/feedsmodel.h \

View File

@ -80,10 +80,11 @@ bool IOFactory::startProcessDetached(const QString& program, const QStringList&
#if defined(Q_OS_WIN) || defined(Q_CLANG_QDOC)
process.setNativeArguments(native_arguments);
#else
Q_UNUSED(native_arguments)
#endif
process.setWorkingDirectory(working_directory);
return process.startDetached(nullptr);
}