mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 02:48:06 +02:00
vulkan/wsi: simplify meson file tracking
Meson already automatically tracks included headers, so there's no need to add them everywhere; cleans up the code a bit. Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
This commit is contained in:
parent
1df0c1e8fb
commit
f3a5757eba
1 changed files with 5 additions and 18 deletions
|
|
@ -21,12 +21,8 @@
|
|||
vulkan_wsi_args = []
|
||||
vulkan_wsi_deps = []
|
||||
|
||||
files_vulkan_wsi = files(
|
||||
'wsi_common.c',
|
||||
'wsi_common.h',
|
||||
'wsi_common_private.h',
|
||||
'wsi_common_queue.h',
|
||||
)
|
||||
files_vulkan_wsi = files('wsi_common.c')
|
||||
|
||||
if with_platform_x11
|
||||
vulkan_wsi_args += ['-DVK_USE_PLATFORM_XCB_KHR', '-DVK_USE_PLATFORM_XLIB_KHR']
|
||||
vulkan_wsi_deps += [
|
||||
|
|
@ -38,19 +34,13 @@ if with_platform_x11
|
|||
dep_xcb_sync,
|
||||
dep_xshmfence,
|
||||
]
|
||||
files_vulkan_wsi += files(
|
||||
'wsi_common_x11.c',
|
||||
'wsi_common_x11.h',
|
||||
)
|
||||
files_vulkan_wsi += files('wsi_common_x11.c')
|
||||
endif
|
||||
|
||||
if with_platform_wayland
|
||||
vulkan_wsi_deps += dep_wayland_client
|
||||
vulkan_wsi_args += ['-DVK_USE_PLATFORM_WAYLAND_KHR']
|
||||
files_vulkan_wsi += files(
|
||||
'wsi_common_wayland.c',
|
||||
'wsi_common_wayland.h',
|
||||
)
|
||||
files_vulkan_wsi += files('wsi_common_wayland.c')
|
||||
files_vulkan_wsi += [
|
||||
wayland_drm_client_protocol_h,
|
||||
wayland_drm_protocol_c,
|
||||
|
|
@ -61,10 +51,7 @@ endif
|
|||
|
||||
if with_platform_drm
|
||||
vulkan_wsi_args += '-DVK_USE_PLATFORM_DISPLAY_KHR'
|
||||
files_vulkan_wsi += files(
|
||||
'wsi_common_display.c',
|
||||
'wsi_common_display.h',
|
||||
)
|
||||
files_vulkan_wsi += files('wsi_common_display.c')
|
||||
endif
|
||||
|
||||
if with_xlib_lease
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue