diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2017-06-09 21:37:48 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2017-06-09 21:37:48 +0100 |
commit | 57c1339056de46a5c14ff62b67d2a263366d7097 (patch) | |
tree | d3de1d18974db9babbca68e7328052559434345f /meson.build | |
parent | 797ee730b058e66fe5b3379bf4ab3140b589e9c5 (diff) |
meson: remove config.h.meson
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/meson.build b/meson.build index 7236331e..a1e8f756 100644 --- a/meson.build +++ b/meson.build @@ -47,7 +47,6 @@ cdata.set('PACKAGE_NAME', '"GStreamer Editing Services"') cdata.set('GST_PACKAGE_NAME', '"GStreamer Editing Services"') cdata.set('GST_PACKAGE_ORIGIN', '"Unknown package origin"') cdata.set('GST_LICENSE', '"LGPL"') -cdata.set('LIBDIR', '"@0@"'.format(get_option('libdir'))) # Mandatory GST deps gst_dep = dependency('gstreamer-' + apiversion, version : gst_req, @@ -81,9 +80,7 @@ if gstvalidate_dep.found() cdata.set('HAVE_GST_VALIDATE', 1) endif -configure_file(input : 'config.h.meson', - output : 'config.h', - configuration : cdata) +configure_file(output : 'config.h', configuration : cdata) gir = find_program('g-ir-scanner', required : false) |