meson: remove vs_module_defs
[platform/upstream/gstreamer.git] / gst-libs / gst / isoff / meson.build
1 isoff_sources = [
2   'gstisoff.c',
3 ]
4 isoff_headers = [
5   'gstisoff.h',
6 ]
7 install_headers(isoff_headers, subdir : 'gstreamer-1.0/gst/isoff')
8
9 gstisoff = library('gstisoff-' + api_version,
10   isoff_sources,
11   c_args : gst_plugins_bad_args + [ '-DGST_USE_UNSTABLE_API' ],
12   include_directories : [configinc, libsinc],
13   version : libversion,
14   soversion : soversion,
15   install : true,
16   dependencies : [gstbase_dep],
17 )
18
19 gstisoff_dep = declare_dependency(link_with : gstisoff,
20   include_directories : [libsinc],
21   dependencies : [gstbase_dep])