summaryrefslogtreecommitdiffstats
path: root/src/vulkan
diff options
context:
space:
mode:
authorSamuel Pitoiset <[email protected]>2019-11-22 12:16:50 +0100
committerSamuel Pitoiset <[email protected]>2019-11-25 07:51:56 +0000
commitd6db858771ab72f607e43cd2cacf73b2f62fad30 (patch)
treeba939ea1da47b1d05f3a4c4f2c30057646517292 /src/vulkan
parentbfb307aea922218cb72ffc9d977e88dfcadb2daf (diff)
meson: only build imgui when needed
Only required for Intel tools or the Vulkan overlay layer. Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/vulkan')
-rw-r--r--src/vulkan/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vulkan/meson.build b/src/vulkan/meson.build
index 7900938b355..e1e8f753b50 100644
--- a/src/vulkan/meson.build
+++ b/src/vulkan/meson.build
@@ -59,6 +59,6 @@ endif
subdir('util')
subdir('wsi')
-if get_option('vulkan-overlay-layer')
+if with_vulkan_overlay_layer
subdir('overlay-layer')
endif