mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
20 lines
449 B
Meson
20 lines
449 B
Meson
if omx_target == 'rpi'
|
|
sub = 'rpi'
|
|
elif omx_target == 'bellagio'
|
|
sub = 'bellagio'
|
|
elif omx_target == 'zynqultrascaleplus'
|
|
sub = 'zynqultrascaleplus'
|
|
elif omx_target == 'tizonia'
|
|
sub = 'tizonia'
|
|
else
|
|
# No config file defined for the 'generic' target
|
|
sub = ''
|
|
endif
|
|
|
|
if sub != ''
|
|
subdir (sub)
|
|
# Used by tests to load the proper conf file
|
|
omx_config_dir = join_paths (meson.current_source_dir(), sub)
|
|
else
|
|
omx_config_dir = ''
|
|
endif
|