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))
|
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/'
|
|
|
|
|
2016-08-05 19:48:41 +00:00
|
|
|
subdir('data')
|
|
|
|
subdir('gst')
|
|
|
|
subdir('launcher')
|
|
|
|
subdir('tools')
|
|
|
|
subdir('docs')
|
|
|
|
subdir('pkgconfig')
|
2016-09-07 13:59:22 +00:00
|
|
|
subdir('tests')
|
2016-08-05 19:48:41 +00:00
|
|
|
#subdir('po')
|