9a8f1b48a0
Summary: Below is a lost of the commits, but, in summary Port the build system for Sailfish, which means selectively building only the bits we need/can, and only against the KF5 libs that are available. Allow to build on Qt 5.6 Switch from knotification to nemo notification (not complete!) Add a very simple example sailfish app. Note, there is still much missing functionality. Notifications dont work, pairing sort of works but not really, but when it is paired you can send a ping to the desktop client Dont build kio for Sailfish Port core build system Port daemon buld system Require CoreAddons on Sailfish Port plugins build for sailfish and include the ping plugin for now Final build changes for sailfish. Disable tests and other not needed parts Add includes for QCA Fix build errors on sailfish Get core/ to build on sailfish Get interfaces/ to build on sailfish Build daemon on sailfish On sailfish, dont install the kcm file Start port plugin to sailfish Fixup installed files Add sfos app Hack declarative plugin to give a public interface Build sfos app Compile declarativeplugin into the sfos app for now Redefine qAsConst for qt 5.6 Packaging fixes Use official icon Package .desktop Reviewers: #kde_connect, apol, nicolasfella, albertvaka Reviewed By: #kde_connect, apol, nicolasfella, albertvaka Subscribers: kdeconnect, andyholmes, albertvaka, kossebau, mtijink, vonreth, apol, #kde_connect, nicolasfella Tags: #kde_connect Differential Revision: https://phabricator.kde.org/D10703
82 lines
2.3 KiB
C++
82 lines
2.3 KiB
C++
/*
|
|
Copyright (c) 2017 Kevin Funk <kfunk@.kde.org
|
|
|
|
This library is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU Library General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or (at your
|
|
option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
|
|
License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to the
|
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef KDEVELOP_QTCOMPAT_P_H
|
|
#define KDEVELOP_QTCOMPAT_P_H
|
|
|
|
#include <qglobal.h>
|
|
|
|
#include <QDir>
|
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5,7,0)
|
|
namespace QtPrivate
|
|
{
|
|
template <typename T> struct QAddConst {
|
|
typedef const T Type;
|
|
};
|
|
}
|
|
|
|
// this adds const to non-const objects (like std::as_const)
|
|
template <typename T>
|
|
Q_DECL_CONSTEXPR typename QtPrivate::QAddConst<T>::Type &qAsConst(T &t) Q_DECL_NOTHROW { return t; }
|
|
// prevent rvalue arguments:
|
|
template <typename T>
|
|
void qAsConst(const T &&) Q_DECL_EQ_DELETE;
|
|
#endif
|
|
|
|
// compat for Q_FALLTHROUGH
|
|
#if QT_VERSION < QT_VERSION_CHECK(5,8,0)
|
|
|
|
#if defined(__has_cpp_attribute)
|
|
# if __has_cpp_attribute(fallthrough)
|
|
# define Q_FALLTHROUGH() [[fallthrough]]
|
|
# elif __has_cpp_attribute(clang::fallthrough)
|
|
# define Q_FALLTHROUGH() [[clang::fallthrough]]
|
|
# elif __has_cpp_attribute(gnu::fallthrough)
|
|
# define Q_FALLTHROUGH() [[gnu::fallthrough]]
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef Q_FALLTHROUGH
|
|
# if defined(__GNUC__) && !defined(__INTEL_COMPILER) && (((__GNUC__ * 100) + __GNUC_MINOR__) >= 700)
|
|
# define Q_FALLTHROUGH() __attribute__((fallthrough))
|
|
# else
|
|
# define Q_FALLTHROUGH() (void)0
|
|
# endif
|
|
#endif
|
|
|
|
#endif
|
|
|
|
namespace QtCompat {
|
|
// TODO: Just use QDir::listSeparator once we depend on Qt 5.6
|
|
Q_DECL_CONSTEXPR inline QChar listSeparator() Q_DECL_NOTHROW
|
|
{
|
|
#if QT_VERSION < QT_VERSION_CHECK(5,6,0)
|
|
#ifdef Q_OS_WIN
|
|
return QLatin1Char(';');
|
|
#else
|
|
return QLatin1Char(':');
|
|
#endif
|
|
#else
|
|
return QDir::listSeparator();
|
|
#endif
|
|
}
|
|
}
|
|
|
|
#endif
|