Skip to content

Commit

Permalink
libcore|Qt: Added macros for checking Qt versions 5.4+
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Nov 22, 2015
1 parent 4ce259d commit 06ab9ad
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions doomsday/sdk/libcore/include/de/libcore.h
Expand Up @@ -105,6 +105,15 @@
# if (QT_VERSION >= QT_VERSION_CHECK(5, 3, 0))
# define DENG2_QT_5_3_OR_NEWER
# endif
# if (QT_VERSION >= QT_VERSION_CHECK(5, 4, 0))
# define DENG2_QT_5_4_OR_NEWER
# endif
# if (QT_VERSION >= QT_VERSION_CHECK(5, 5, 0))
# define DENG2_QT_5_5_OR_NEWER
# endif
# if (QT_VERSION >= QT_VERSION_CHECK(5, 6, 0))
# define DENG2_QT_5_6_OR_NEWER
# endif
#endif

#ifndef _MSC_VER
Expand Down

0 comments on commit 06ab9ad

Please sign in to comment.