mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
Merge pull request #1313 from colemickens/libdrm
render: fix meson including libdrm
This commit is contained in:
commit
8beeb88309
2 changed files with 2 additions and 2 deletions
|
@ -80,7 +80,7 @@ examples = {
|
||||||
libavcodec,
|
libavcodec,
|
||||||
libavformat,
|
libavformat,
|
||||||
libavutil,
|
libavutil,
|
||||||
drm.partial_dependency(includes: true), # <drm_fourcc.h>
|
drm.partial_dependency(compile_args: true), # <drm_fourcc.h>
|
||||||
threads,
|
threads,
|
||||||
wayland_client,
|
wayland_client,
|
||||||
wlr_protos,
|
wlr_protos,
|
||||||
|
|
|
@ -24,7 +24,7 @@ lib_wlr_render = static_library(
|
||||||
include_directories: wlr_inc,
|
include_directories: wlr_inc,
|
||||||
dependencies: [
|
dependencies: [
|
||||||
egl,
|
egl,
|
||||||
drm.partial_dependency(includes: true), # <drm_fourcc.h>
|
drm.partial_dependency(compile_args: true), # <drm_fourcc.h>
|
||||||
glesv2,
|
glesv2,
|
||||||
pixman,
|
pixman,
|
||||||
wayland_server
|
wayland_server
|
||||||
|
|
Loading…
Reference in a new issue