mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
meson: build allocators library
This commit is contained in:
parent
556bed08a1
commit
78e73cd359
2 changed files with 25 additions and 0 deletions
24
gst-libs/gst/allocators/meson.build
Normal file
24
gst-libs/gst/allocators/meson.build
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
badallocators_sources = [
|
||||||
|
'gstphysmemory.c',
|
||||||
|
]
|
||||||
|
|
||||||
|
badallocators_headers = [
|
||||||
|
'badallocators.h',
|
||||||
|
'gstphysmemory.h',
|
||||||
|
]
|
||||||
|
|
||||||
|
install_headers(badallocators_headers, subdir : 'gstreamer-1.0/gst/allocators')
|
||||||
|
|
||||||
|
gstbadallocators = library('gstbadallocators-' + api_version,
|
||||||
|
badallocators_sources,
|
||||||
|
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
||||||
|
include_directories : [configinc, libsinc],
|
||||||
|
version : libversion,
|
||||||
|
soversion : soversion,
|
||||||
|
install : true,
|
||||||
|
dependencies : [gst_dep]
|
||||||
|
)
|
||||||
|
|
||||||
|
gstbadallocators_dep = declare_dependency(link_with : gstbadallocators,
|
||||||
|
include_directories : [libsinc],
|
||||||
|
dependencies : [gst_dep])
|
|
@ -1,6 +1,7 @@
|
||||||
subdir('base')
|
subdir('base')
|
||||||
subdir('uridownloader')
|
subdir('uridownloader')
|
||||||
|
|
||||||
|
subdir('allocators')
|
||||||
subdir('adaptivedemux')
|
subdir('adaptivedemux')
|
||||||
subdir('audio')
|
subdir('audio')
|
||||||
subdir('basecamerabinsrc')
|
subdir('basecamerabinsrc')
|
||||||
|
|
Loading…
Reference in a new issue