diff options
Diffstat (limited to 'omx/meson.build')
-rw-r--r-- | omx/meson.build | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/omx/meson.build b/omx/meson.build index ca0dccd..b68cc55 100644 --- a/omx/meson.build +++ b/omx/meson.build @@ -26,7 +26,6 @@ omx_sources = [ 'gstomxmp3enc.c', ] -extra_inc = [] extra_c_args = [] if have_omx_vp8 @@ -43,10 +42,6 @@ if have_omx_hevc omx_sources += 'gstomxh265dec.c' endif -if not have_external_omx - extra_inc += include_directories ('openmax') -endif - optional_deps = [] if gstgl_dep.found() optional_deps += gstgl_dep @@ -57,7 +52,7 @@ gstomx = library('gstomx', omx_sources, c_args : gst_omx_args + extra_c_args, # link_args : noseh_link_args, - include_directories : [configinc] + extra_inc, + include_directories : [configinc, omx_inc], dependencies : [gstvideo_dep, gstaudio_dep, gstbase_dep, gstcontroller_dep, libm, gmodule_dep, gstallocators_dep] + optional_deps, install : true, |