Skip to content

Commit

Permalink
Qt|qmake: Minimum required version of Qt is now 4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Aug 13, 2014
1 parent dc47168 commit 315f749
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions doomsday/libcore/include/de/libcore.h
Expand Up @@ -86,17 +86,13 @@
# include <QScopedPointer>
# include <QDebug>

// Qt versioning helper. Qt 4.7 is the oldest we support.
# if (QT_VERSION <= QT_VERSION_CHECK(4, 6, 0))
// Qt versioning helper. Qt 4.8 is the oldest we support.
# if (QT_VERSION < QT_VERSION_CHECK(4, 8, 0))
# error "Unsupported version of Qt"
# endif
# define DENG2_QT_4_6_OR_NEWER
# if (QT_VERSION >= QT_VERSION_CHECK(4, 7, 0))
# define DENG2_QT_4_7_OR_NEWER
# endif
# if (QT_VERSION >= QT_VERSION_CHECK(4, 8, 0))
# define DENG2_QT_4_8_OR_NEWER
# endif
# define DENG2_QT_4_7_OR_NEWER
# define DENG2_QT_4_8_OR_NEWER
# if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
# define DENG2_QT_5_0_OR_NEWER
# endif
Expand Down

0 comments on commit 315f749

Please sign in to comment.