summaryrefslogtreecommitdiff
path: root/config/meson.build
blob: 1068c6d9c6a4eec1156266b85e45d9fa1458f68c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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