meson: Modernize opencv build definitions
Use the fs module instead of using `run_command('test')`, simplify some indentation, fix dependency management Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8418>
This commit is contained in:
parent
7346764b8e
commit
bbdf8f5996
@ -66,13 +66,11 @@ plugin_sources += {
|
|||||||
'opencv': pathsep.join(doc_sources)
|
'opencv': pathsep.join(doc_sources)
|
||||||
}
|
}
|
||||||
|
|
||||||
if get_option('opencv').disabled()
|
if get_option('opencv').disabled() or not opencv_dep.found()
|
||||||
opencv_dep = disabler()
|
|
||||||
subdir_done()
|
subdir_done()
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if opencv_found
|
gstopencv = library('gstopencv',
|
||||||
gstopencv = library('gstopencv',
|
|
||||||
gstopencv_sources,
|
gstopencv_sources,
|
||||||
cpp_args : gst_plugins_bad_args + gstopencv_cargs + [ '-DGST_USE_UNSTABLE_API' ],
|
cpp_args : gst_plugins_bad_args + gstopencv_cargs + [ '-DGST_USE_UNSTABLE_API' ],
|
||||||
link_args : [noseh_link_args, '-lopencv_tracking'],
|
link_args : [noseh_link_args, '-lopencv_tracking'],
|
||||||
@ -80,8 +78,5 @@ if opencv_found
|
|||||||
dependencies : [gstbase_dep, gstvideo_dep, opencv_dep, gstopencv_dep],
|
dependencies : [gstbase_dep, gstvideo_dep, opencv_dep, gstopencv_dep],
|
||||||
install : true,
|
install : true,
|
||||||
install_dir : plugins_install_dir,
|
install_dir : plugins_install_dir,
|
||||||
)
|
)
|
||||||
plugins += [gstopencv]
|
plugins += [gstopencv]
|
||||||
elif get_option('opencv').enabled()
|
|
||||||
error('OpenCV support enabled but required dependencies were not found.')
|
|
||||||
endif
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
if get_option('opencv').disabled()
|
opencv_opt = get_option('opencv')
|
||||||
gstopencv_dep = disabler()
|
if opencv_opt.disabled()
|
||||||
|
opencv_dep = disabler()
|
||||||
subdir_done()
|
subdir_done()
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@ -27,56 +28,59 @@ libopencv_headers = [
|
|||||||
|
|
||||||
|
|
||||||
gstopencv_cargs = ['-DGST_HAAR_CASCADES_DIR="@0@"']
|
gstopencv_cargs = ['-DGST_HAAR_CASCADES_DIR="@0@"']
|
||||||
|
|
||||||
opencv_dep = dependency('opencv', version : ['>= 3.0.0', '< 3.5.0'], required : false)
|
opencv_dep = dependency('opencv', version : ['>= 3.0.0', '< 3.5.0'], required : false)
|
||||||
opencv_found = opencv_dep.found()
|
if not opencv_dep.found()
|
||||||
if not opencv_found
|
opencv_dep = dependency('opencv', version : ['>= 4.0.0'], required : opencv_opt)
|
||||||
opencv_dep = dependency('opencv4', version : ['>= 4.0.0'], required : false)
|
if not opencv_dep.found()
|
||||||
opencv_found = opencv_dep.found()
|
subdir_done()
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if opencv_found
|
opencv_found = true
|
||||||
foreach h : libopencv_headers
|
foreach h : libopencv_headers
|
||||||
if not cxx.has_header(h, dependencies: opencv_dep)
|
if not cxx.has_header(h, dependencies: opencv_dep)
|
||||||
message('Needed header "' + h + '" not found')
|
message('Needed header "' + h + '" not found')
|
||||||
opencv_found = false
|
opencv_found = false
|
||||||
endif
|
endif
|
||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
|
if not opencv_found
|
||||||
|
if opencv_opt.enabled()
|
||||||
|
error('opencv enabled, but needed headers not found')
|
||||||
|
endif
|
||||||
|
subdir_done()
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if opencv_found
|
opencv_prefix = opencv_dep.get_variable('prefix')
|
||||||
opencv_prefix = opencv_dep.get_variable('prefix')
|
gstopencv_cargs += ['-DOPENCV_PREFIX="' + opencv_prefix + '"']
|
||||||
gstopencv_cargs += ['-DOPENCV_PREFIX="' + opencv_prefix + '"']
|
# opencv4 seems to ship with .pc file that references non-existent include dir
|
||||||
# opencv4 seems to ship with .pc file that references non-existent include dir
|
# (/usr/include/opencv4/opencv instead of /usr/include/opencv4/opencv2)
|
||||||
# (/usr/include/opencv4/opencv instead of /usr/include/opencv4/opencv2)
|
# clang 10 complains about the following header in opencv4
|
||||||
# clang 10 complains about the following header in opencv4
|
# /usr/include/opencv4/opencv2/flann/logger.h:83:36: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
|
||||||
# /usr/include/opencv4/opencv2/flann/logger.h:83:36: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
|
gstopencv_cargs += cxx.get_supported_arguments(['-Wno-missing-include-dirs', '-Wno-format-nonliteral'])
|
||||||
gstopencv_cargs += cxx.get_supported_arguments(['-Wno-missing-include-dirs', '-Wno-format-nonliteral'])
|
|
||||||
|
|
||||||
# Check the data dir used by opencv for its xml data files
|
# Check the data dir used by opencv for its xml data files
|
||||||
# Use prefix from pkg-config to be compatible with cross-compilation
|
# Use prefix from pkg-config to be compatible with cross-compilation
|
||||||
r = run_command('test', '-d', opencv_prefix + '/share/opencv', check: false)
|
fsmod = import('fs')
|
||||||
if r.returncode() == 0
|
opencv_path_name = ''
|
||||||
gstopencv_cargs += '-DOPENCV_PATH_NAME="opencv"'
|
foreach d : ['opencv', 'OpenCV', 'opencv4']
|
||||||
else
|
if fsmod.is_dir(opencv_prefix / 'share' / d)
|
||||||
r = run_command('test', '-d', opencv_prefix + '/share/OpenCV', check: false)
|
opencv_path_name = d
|
||||||
if r.returncode() == 0
|
break
|
||||||
gstopencv_cargs += '-DOPENCV_PATH_NAME="OpenCV"'
|
endif
|
||||||
else
|
endforeach
|
||||||
r = run_command('test', '-d', opencv_prefix + '/share/opencv4', check: false)
|
if opencv_path_name != ''
|
||||||
if r.returncode() == 0
|
gstopencv_cargs += [f'-DOPENCV_PATH_NAME="@d@"']
|
||||||
gstopencv_cargs += '-DOPENCV_PATH_NAME="opencv4"'
|
else
|
||||||
else
|
if opencv_opt.enabled()
|
||||||
|
error('opencv enabled, but data directory not found')
|
||||||
|
endif
|
||||||
message('Unable to detect OpenCV data directory')
|
message('Unable to detect OpenCV data directory')
|
||||||
opencv_found = false
|
subdir_done()
|
||||||
endif
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if opencv_found
|
pkg_name = 'gstreamer-opencv-1.0'
|
||||||
pkg_name = 'gstreamer-opencv-1.0'
|
gstopencv = library('gstopencv-' + api_version,
|
||||||
gstopencv = library('gstopencv-' + api_version,
|
|
||||||
opencv_sources,
|
opencv_sources,
|
||||||
c_args : gst_plugins_bad_args + ['-DBUILDING_GST_OPENCV'],
|
c_args : gst_plugins_bad_args + ['-DBUILDING_GST_OPENCV'],
|
||||||
cpp_args : gst_plugins_bad_args + gstopencv_cargs + ['-DBUILDING_GST_OPENCV', '-DG_LOG_DOMAIN="GStreamer-OpenCV"'],
|
cpp_args : gst_plugins_bad_args + gstopencv_cargs + ['-DBUILDING_GST_OPENCV', '-DG_LOG_DOMAIN="GStreamer-OpenCV"'],
|
||||||
@ -87,26 +91,21 @@ if opencv_found
|
|||||||
darwin_versions : osxversion,
|
darwin_versions : osxversion,
|
||||||
install : true,
|
install : true,
|
||||||
dependencies : [gstbase_dep, gstvideo_dep, opencv_dep],
|
dependencies : [gstbase_dep, gstvideo_dep, opencv_dep],
|
||||||
)
|
)
|
||||||
|
|
||||||
doc_sources = []
|
doc_sources = []
|
||||||
foreach s: opencv_sources + opencv_headers
|
foreach s: opencv_sources + opencv_headers
|
||||||
doc_sources += s.full_path()
|
doc_sources += s.full_path()
|
||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
libs_c_sources += {
|
libs_c_sources += {
|
||||||
'opencv': pathsep.join(doc_sources)
|
'opencv': pathsep.join(doc_sources)
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_libraries += [[pkg_name, {'lib': gstopencv}]]
|
gst_libraries += [[pkg_name, {'lib': gstopencv}]]
|
||||||
gstopencv_dep = declare_dependency(link_with: gstopencv,
|
gstopencv_dep = declare_dependency(link_with: gstopencv,
|
||||||
include_directories : [libsinc],
|
include_directories : [libsinc],
|
||||||
dependencies : [gstvideo_dep, opencv_dep])
|
dependencies : [gstvideo_dep, opencv_dep])
|
||||||
meson.override_dependency(pkg_name, gstopencv_dep)
|
meson.override_dependency(pkg_name, gstopencv_dep)
|
||||||
|
|
||||||
install_headers(opencv_headers, subdir : 'gstreamer-1.0/gst/opencv')
|
install_headers(opencv_headers, subdir : 'gstreamer-1.0/gst/opencv')
|
||||||
elif get_option('opencv').enabled()
|
|
||||||
error('OpenCV support enabled but required dependencies were not found.')
|
|
||||||
else
|
|
||||||
gstopencv_dep = disabler()
|
|
||||||
endif
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user