validate:pipeline-monitor: Connect deep properties notification only when required
[platform/upstream/gstreamer.git] / validate / meson.build
1 # version: '1.17.0.1' - we're putting this in here to trick the dist-hook check
2 # in release.mak in the common submodule without having to update it
3 inc_dirs = include_directories('.')
4
5 cdata = configuration_data()
6
7 cdata.set('GST_LICENSE', '"LGPL"')
8 cdata.set('VERSION', '"@0@"'.format(gst_version))
9 cdata.set('PACKAGE', '"gst-validate"')
10 cdata.set('GST_PACKAGE_NAME', '"GStreamer Validate"')
11 cdata.set('GST_PACKAGE_ORIGIN', '"Unknown package origin"')
12 cdata.set('GST_API_VERSION', '"@0@"'.format(apiversion))
13 cdata.set('VALIDATEPLUGINDIR', '"@0@/@1@/gstreamer-1.0/validate"'.format(get_option('prefix'),get_option('libdir')))
14 cdata.set('GST_DATADIR', '"@0@/@1@"'.format(prefix, get_option('datadir')))
15 cdata.set('PACKAGE_NAME', '"GStreamer Validate"')
16 cdata.set('PACKAGE_VERSION', '"@0@"'.format(gst_version))
17 if cc.has_header('unistd.h')
18   cdata.set('HAVE_UNISTD_H', 1)
19 endif
20 configure_file(output : 'config.h', configuration : cdata)
21
22 vs_module_defs_dir = meson.current_source_dir() + '/win32/common/'
23
24 validate_plugins_install_dir = '@0@/gstreamer-1.0/validate'.format(get_option('libdir'))
25 subdir('data')
26 subdir('gst')
27 subdir('gst-libs')
28 subdir('launcher')
29 subdir('tools')
30 subdir('pkgconfig')
31 if not get_option('tests').disabled()
32   subdir('tests')
33 endif
34 subdir('plugins')
35 #subdir('po')