mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-02-02 02:16:53 +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
|
CONFIG += unversioned_libname unversioned_soname skip_target_version_ext
|
||||||
|
|
||||||
RESOURCES += ../../resources/sql.qrc \
|
RESOURCES += ../../resources/sql.qrc \
|
||||||
../../resources/rssguard.qrc \
|
../../resources/rssguard.qrc
|
||||||
../../resources/icons.qrc
|
|
||||||
|
!unix {
|
||||||
|
RESOURCES += ../../resources/icons.qrc
|
||||||
|
}
|
||||||
|
|
||||||
HEADERS += core/feeddownloader.h \
|
HEADERS += core/feeddownloader.h \
|
||||||
core/feedsmodel.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)
|
#if defined(Q_OS_WIN) || defined(Q_CLANG_QDOC)
|
||||||
process.setNativeArguments(native_arguments);
|
process.setNativeArguments(native_arguments);
|
||||||
|
#else
|
||||||
|
Q_UNUSED(native_arguments)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
process.setWorkingDirectory(working_directory);
|
process.setWorkingDirectory(working_directory);
|
||||||
|
|
||||||
return process.startDetached(nullptr);
|
return process.startDetached(nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user