Project

General

Profile

Feature #881 » 0027-Meson-Add-check-for-Qt-version.patch

S3_2, S3_1 - Marko Lindqvist, 09/22/2024 12:57 AM

View differences:

meson.build
add_global_arguments('-DQT_DISABLE_DEPRECATED_BEFORE=0x050b00', language : 'cpp')
priv_conf_data.set('FC_QT5_MODE', 1)
qt_opts = []
qt_miver = '0x050b00'
else
add_global_arguments('-DQT_DISABLE_DEPRECATED_BEFORE=0x060000', language : 'cpp')
qt_opts = 'cpp_std=c++17'
qt_minver = '0x060000'
endif
if get_option('audio') != 'none'
......
qt_dep = dependency('Qt5', modules: ['Core', 'Gui', 'Widgets'], required: false)
endif
if qt_dep.found() and cxx_build
if cxx_compiler.compiles(
'''#include <QtCore>
int main()
{
#if QT_VERSION < ''' + qt_minver + '''
fail
#endif
return 0;
}
''',
name: 'qt minver',
dependencies: qt_dep)
qtfine = true
else
qtfine = false
endif
else
qtfine = false
endif
if get_option('clients').contains('qt')
if not qt_dep.found()
if not qtfine
if get_option('qtver') == 'qt6'
error('Qt6 >= 6.0 required for qt-client in Qt6 mode, but not found')
else
......
if get_option('fcmp').contains('qt')
if not qt_dep.found()
if not qtfine
if get_option('qtver') == 'qt6'
error('Qt6 >= 6.0 required for qt-modpack-installer in Qt6 mode, but not found')
else
......
if get_option('tools').contains('ruledit')
if not qt_dep.found()
if not qtfine
if get_option('qtver') == 'qt6'
error('Qt6 >= 6.0 required for ruledit in Qt6 mode, but not found')
else
(4-4/7)