mirror of https://github.com/Genymobile/scrcpy
Do not use too recent set_quoted()
Old versions of meson do not support set_quoted(). Replace the call by the old-fashioned manual quotation.
This commit is contained in:
parent
a5b6c6cc2d
commit
d45ef1a295
|
@ -39,7 +39,8 @@ conf = configuration_data()
|
|||
conf.set('BUILD_DEBUG', get_option('buildtype') == 'debug')
|
||||
|
||||
# the version, updated on release
|
||||
conf.set_quoted('SCRCPY_VERSION', '0.1')
|
||||
# (conf.set_quoted() is not available on old versions of meson)
|
||||
conf.set('SCRCPY_VERSION', '"0.1"')
|
||||
|
||||
# the default client TCP port for the "adb reverse" tunnel
|
||||
# overridden by option --port
|
||||
|
|
Loading…
Reference in New Issue