mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Fix linking issue (missing wayland-client library) (#21408)
As fl_renderer_wayland.cc uses directly some of the wayland-client related functions it should also add this library as a dependency.
This commit is contained in:
parent
e78e405e6a
commit
91c81ebfae
@ -80,7 +80,10 @@ source_set("flutter_linux_sources") {
|
||||
"fl_standard_message_codec_private.h",
|
||||
]
|
||||
|
||||
configs += [ "//flutter/shell/platform/linux/config:gtk" ]
|
||||
configs += [
|
||||
"//flutter/shell/platform/linux/config:gtk",
|
||||
"//flutter/shell/platform/linux/config:wayland-client",
|
||||
]
|
||||
|
||||
sources = [
|
||||
"egl_utils.cc",
|
||||
|
||||
@ -22,3 +22,7 @@ pkg_config("egl") {
|
||||
pkg_config("wayland-egl") {
|
||||
packages = [ "wayland-egl" ]
|
||||
}
|
||||
|
||||
pkg_config("wayland-client") {
|
||||
packages = [ "wayland-client" ]
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user