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:
Romain Vimont 2018-02-12 17:27:25 +01:00
parent a5b6c6cc2d
commit d45ef1a295

View file

@ -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