Merge pull request #1313 from colemickens/libdrm

render: fix meson including libdrm
This commit is contained in:
Scott Anderson 2018-10-15 22:55:27 +02:00 committed by GitHub
commit 8beeb88309
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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,

View File

@ -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