mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
17586b80b1
And remove now useless config.h.meson file
24 lines
852 B
Meson
24 lines
852 B
Meson
inc_dirs = include_directories('.')
|
|
|
|
cdata = configuration_data()
|
|
|
|
cdata.set('GST_LICENSE', '"LGPL"')
|
|
cdata.set('VERSION', '"@0@"'.format(gst_version))
|
|
cdata.set('PACKAGE', '"gst-validate"')
|
|
cdata.set('GST_PACKAGE_NAME', '"GStreamer Validate"')
|
|
cdata.set('GST_PACKAGE_ORIGIN', '"Unknown package origin"')
|
|
cdata.set('GST_API_VERSION', '"@0@"'.format(apiversion))
|
|
cdata.set('VALIDATEPLUGINDIR', '"@0@/@1@/gstreamer-1.0/validate"'.format(get_option('prefix'),get_option('libdir')))
|
|
cdata.set('GST_DATADIR', '"@0@/@1@"'.format(prefix, get_option('datadir')))
|
|
cdata.set('PACKAGE_NAME', '"GStreamer Validate"')
|
|
cdata.set('PACKAGE_VERSION', '"@0@"'.format(gst_version))
|
|
configure_file(output : 'config.h', configuration : cdata)
|
|
|
|
subdir('data')
|
|
subdir('gst')
|
|
subdir('launcher')
|
|
subdir('tools')
|
|
subdir('docs')
|
|
subdir('pkgconfig')
|
|
subdir('tests')
|
|
#subdir('po')
|