gstreamer/subprojects/webview2/meson.build
2024-04-13 14:47:29 +00:00

37 lines
1.1 KiB
Meson

project('webview2', 'c', version : '1.0.2420.47')
py3 = import('python3').find_python()
if host_machine.system() != 'windows'
error('Can only download webview2 for Windows')
endif
message('Downloading and extracting webview2 nuget package')
arch = target_machine.cpu_family()
if arch not in ['x86_64', 'x86', 'aarch64']
error(f'Unexpected architecture @arch@')
endif
zip_hash = '8e5a7307d71507edbbe02cac27215d71058bbd82cd256cef60f06b945907610a'
version = meson.project_version()
ret = run_command(py3, files('download-binary.py'), version, zip_hash,
check: true)
base_path = f'webview2-@version@' / 'build' / 'native'
inc_dir = include_directories(base_path / 'include')
lib_base_path = meson.current_source_dir() / base_path
lib_path = ''
if arch == 'x86_64'
lib_path = lib_base_path / 'x64'
elif arch == 'x86'
lib_path = lib_base_path / 'x86'
else
lib_path = lib_base_path / 'arm64'
endif
cc = meson.get_compiler('c')
loader_static = cc.find_library('WebView2LoaderStatic', dirs: lib_path)
webview2_dep = declare_dependency(include_directories: inc_dir,
dependencies: loader_static)