mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-21 22:52:20 +00:00
build: rename libdrm partial dep to be more explicit
The variable is named "libdrm" but it's a partial dependency with just the headers. Reflect this in the name to avoid confusion (Meson variables are global to the whole project).
This commit is contained in:
parent
0de3659698
commit
ecc7f01705
@ -12,7 +12,7 @@ libavutil = dependency('libavutil', version: '>=56.14.100', required: false, dis
|
|||||||
libavcodec = dependency('libavcodec', version: '>=58.18.100', required: false, disabler: true)
|
libavcodec = dependency('libavcodec', version: '>=58.18.100', required: false, disabler: true)
|
||||||
libavformat = dependency('libavformat', version: '>=58.12.100', required: false, disabler: true)
|
libavformat = dependency('libavformat', version: '>=58.12.100', required: false, disabler: true)
|
||||||
# Only needed for drm_fourcc.h
|
# Only needed for drm_fourcc.h
|
||||||
libdrm = dependency('libdrm').partial_dependency(compile_args: true, includes: true)
|
libdrm_header = dependency('libdrm').partial_dependency(compile_args: true, includes: true)
|
||||||
|
|
||||||
# epoll is a separate library in FreeBSD
|
# epoll is a separate library in FreeBSD
|
||||||
if host_machine.system() == 'freebsd'
|
if host_machine.system() == 'freebsd'
|
||||||
@ -199,7 +199,7 @@ foreach name, info : compositors
|
|||||||
executable(
|
executable(
|
||||||
name,
|
name,
|
||||||
[info.get('src'), extra_src],
|
[info.get('src'), extra_src],
|
||||||
dependencies: [wlroots, libdrm, info.get('dep', [])],
|
dependencies: [wlroots, libdrm_header, info.get('dep', [])],
|
||||||
build_by_default: get_option('examples'),
|
build_by_default: get_option('examples'),
|
||||||
)
|
)
|
||||||
endforeach
|
endforeach
|
||||||
|
Loading…
Reference in New Issue
Block a user