From 581b6b3375c4619006ab70601a95452d8b4fd1e0 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Fri, 3 Mar 2023 16:13:42 +0000 Subject: [PATCH] meson: move util_files next to its user Signed-off-by: Emil Velikov --- meson.build | 5 ----- src/meson.build | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/meson.build b/meson.build index 63356abe..867aa34d 100644 --- a/meson.build +++ b/meson.build @@ -187,11 +187,6 @@ vk_enum_to_str = custom_target( ], ) -util_files = files( - 'src/mesa/util/os_socket.c', - 'src/mesa/util/os_time.c', -) - imgui_options = [ 'default_library=static', 'werror=false', diff --git a/src/meson.build b/src/meson.build index 5bcf98d7..ebc3f6ab 100644 --- a/src/meson.build +++ b/src/meson.build @@ -41,6 +41,11 @@ foreach s : ['overlay.frag', 'overlay.vert'] command : [glslang, '-V', '-x', '-o', '@OUTPUT@', '@INPUT@']) endforeach +util_files = files( + 'mesa/util/os_socket.c', + 'mesa/util/os_time.c', +) + vklayer_files = files( 'hud_elements.cpp', 'overlay.cpp',