mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-01-22 13:40:22 +01:00
Do not bundle icon themes on Unix/Linux systems.
This commit is contained in:
parent
684ee4d2b1
commit
5821d87a85
@ -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 \
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user