diff options
author | Lionel Landwerlin <[email protected]> | 2019-05-10 18:55:54 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2019-05-22 14:07:14 +0000 |
commit | cb7c9b2a9352cc73a2d3becc0427c53c8baf153a (patch) | |
tree | 28ae03b3d66c6a31edfbd1fdfcc2c1c0c3e1792b /src/vulkan/wsi | |
parent | 506ebf55c0446e690c2f40471fce2d4ea2f9762d (diff) |
vulkan: fix build dependency issue with generated files
On machines with many cores, you can run into that issue :
../mesa-9999/src/vulkan/overlay-layer/overlay.cpp:42:10: fatal error: vk_enum_to_str.h: No such file or directory
v2: Move declare_dependency around (Eric)
Signed-off-by: Lionel Landwerlin <[email protected]>
Reported-by: Jan Ziak
Cc: <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/vulkan/wsi')
-rw-r--r-- | src/vulkan/wsi/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vulkan/wsi/meson.build b/src/vulkan/wsi/meson.build index 1f8ada56962..01b5f39da4b 100644 --- a/src/vulkan/wsi/meson.build +++ b/src/vulkan/wsi/meson.build @@ -41,9 +41,9 @@ endif libvulkan_wsi = static_library( 'vulkan_wsi', files_vulkan_wsi, - include_directories : [inc_common, inc_vulkan_util, inc_include], + include_directories : [inc_common, inc_include], link_with: [libxmlconfig], - dependencies : [vulkan_wsi_deps, dep_libdrm], + dependencies : [vulkan_wsi_deps, dep_libdrm, idep_vulkan_util], c_args : [c_vis_args, vulkan_wsi_args], build_by_default : false, ) |