mirror of
https://github.com/libretro/RetroArch
synced 2024-12-27 06:25:59 +00:00
3e2f0131ae
* (Qt) Migrate to Qt6 * basic support Qt6 with minimal changes required for compiling * look `moc` in QT_HOST_LIBEXECS * (Qt) Backward compatibility with Qt5
5 lines
246 B
Bash
5 lines
246 B
Bash
[ "$HAVE_QT6" = "yes" ] && QT_VERSION=qt6 || QT_VERSION=qt5
|
|
[ "$HAVE_QT6" = "yes" ] && QT_FLAGS="$CXX17_CFLAGS $QT6CORE_CFLAGS $QT6CORE_LIBS" || QT_FLAGS="$CXX11_CFLAGS $QT5CORE_CFLAGS $QT5CORE_LIBS"
|
|
|
|
add_define MAKEFILE QT_VERSION "$QT_VERSION"
|