meson: Use copy: true for configure_file()

Fixes a warning.
This commit is contained in:
Nirbheek Chauhan 2018-07-25 07:04:11 +05:30
parent 7bee79426d
commit 415e0e68af
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
types = configure_file(input : 'gstreamer.types.in',
output : 'gstreamer.types',
configuration : configuration_data())
copy: true)
gnome.gtkdoc('gstreamer',
main_sgml : 'gstreamer-docs.sgml',

View file

@ -1,6 +1,6 @@
types = configure_file(input : 'gstreamer-libs.types',
output : 'gstreamer-libs.types',
configuration : configuration_data())
copy: true)
gnome.gtkdoc('gstreamer-libs',
main_sgml : 'gstreamer-libs-docs.sgml',

View file

@ -1,6 +1,6 @@
project('gstreamer', 'c',
version : '1.15.0.1',
meson_version : '>= 0.46',
meson_version : '>= 0.47',
default_options : [ 'warning_level=1',
'buildtype=debugoptimized' ])