Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Simon Zeni
wlroots
Commits
1ed69b80
Commit
1ed69b80
authored
Oct 02, 2021
by
Simon Ser
Browse files
build: add subproject fallback for libdrm
parent
b25eeb7d
Changes
1
Hide whitespace changes
Inline
Side-by-side
meson.build
View file @
1ed69b80
...
...
@@ -108,7 +108,27 @@ wayland_client = dependency('wayland-client',
default_options: wayland_project_options,
)
drm = dependency('libdrm', version: '>=2.4.108')
drm = dependency('libdrm',
version: '>=2.4.108',
fallback: ['libdrm', 'ext_libdrm'],
default_options: [
'libkms=false',
'intel=false',
'radeon=false',
'amdgpu=false',
'nouveau=false',
'vmwgfx=false',
'omap=false',
'exynos=false',
'freedreno=false',
'tegra=false',
'vc4=false',
'etnaviv=false',
'cairo-tests=false',
'man-pages=false',
'valgrind=false',
],
)
gbm = dependency('gbm', version: '>=17.1.0')
xkbcommon = dependency('xkbcommon')
udev = dependency('libudev')
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment