Merge pull request #1313 from colemickens/libdrm

render: fix meson including libdrm
master
Scott Anderson 6 years ago committed by GitHub
commit 8beeb88309
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -80,7 +80,7 @@ examples = {
libavcodec,
libavformat,
libavutil,
drm.partial_dependency(includes: true), # <drm_fourcc.h>
drm.partial_dependency(compile_args: true), # <drm_fourcc.h>
threads,
wayland_client,
wlr_protos,

@ -24,7 +24,7 @@ lib_wlr_render = static_library(
include_directories: wlr_inc,
dependencies: [
egl,
drm.partial_dependency(includes: true), # <drm_fourcc.h>
drm.partial_dependency(compile_args: true), # <drm_fourcc.h>
glesv2,
pixman,
wayland_server

Loading…
Cancel
Save