2016-08-05 19:48:41 +00:00
|
|
|
inc_dirs = include_directories('.')
|
|
|
|
|
|
|
|
cdata = configuration_data()
|
2016-09-08 15:53:30 +00:00
|
|
|
|
2016-09-08 15:52:24 +00:00
|
|
|
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"')
|
2016-08-05 19:48:41 +00:00
|
|
|
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"')
|
2016-09-08 15:53:30 +00:00
|
|
|
cdata.set('PACKAGE_VERSION', '"@0@"'.format(gst_version))
|
2017-04-28 20:59:21 +00:00
|
|
|
if cc.has_header('unistd.h')
|
|
|
|
cdata.set('HAVE_UNISTD_H', 1)
|
|
|
|
endif
|
2016-11-08 21:06:19 +00:00
|
|
|
configure_file(output : 'config.h', configuration : cdata)
|
2016-08-05 19:48:41 +00:00
|
|
|
|
2016-11-19 10:36:32 +00:00
|
|
|
vs_module_defs_dir = meson.current_source_dir() + '/win32/common/'
|
|
|
|
|
2017-01-30 21:19:00 +00:00
|
|
|
validate_plugins_install_dir = '@0@/gstreamer-1.0/validate'.format(get_option('libdir'))
|
2016-08-05 19:48:41 +00:00
|
|
|
subdir('data')
|
|
|
|
subdir('gst')
|
2017-01-30 21:19:00 +00:00
|
|
|
subdir('gst-libs')
|
2016-08-05 19:48:41 +00:00
|
|
|
subdir('launcher')
|
|
|
|
subdir('tools')
|
2017-02-15 15:39:18 +00:00
|
|
|
if build_machine.system() == 'windows'
|
|
|
|
message('Disabling gtk-doc while building on Windows')
|
2018-05-05 14:25:14 +00:00
|
|
|
elif not get_option('gtkdoc')
|
2017-02-15 15:39:18 +00:00
|
|
|
message('gtk-doc is disabled via options')
|
|
|
|
else
|
|
|
|
if find_program('gtkdoc-scan', required : false).found()
|
|
|
|
subdir('docs')
|
|
|
|
else
|
|
|
|
message('Not building documentation as gtk-doc was not found')
|
|
|
|
endif
|
|
|
|
endif
|
2016-08-05 19:48:41 +00:00
|
|
|
subdir('pkgconfig')
|
2016-09-07 13:59:22 +00:00
|
|
|
subdir('tests')
|
2017-01-30 21:19:00 +00:00
|
|
|
subdir('plugins')
|
2016-08-05 19:48:41 +00:00
|
|
|
#subdir('po')
|