mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
09f67fe76a
Everything should be behind an option now. https://bugzilla.gnome.org/show_bug.cgi?id=795107
14 lines
434 B
Meson
14 lines
434 B
Meson
executable('stream-status', 'stream-status.c',
|
|
install: false,
|
|
dependencies : [glib_dep, gobject_dep, gmodule_dep, mathlib, gst_dep],
|
|
c_args: gst_c_args,
|
|
)
|
|
|
|
if cc.has_header('pthread.h')
|
|
threads_dep = dependency('threads')
|
|
executable('rtpool-test', 'rtpool-test.c', 'testrtpool.c',
|
|
install: false,
|
|
dependencies : [glib_dep, gobject_dep, gmodule_dep, mathlib, gst_dep, threads_dep],
|
|
c_args: gst_c_args,
|
|
)
|
|
endif
|