From d6e0c458559740a21608f1856c9c9d2df213dfae Mon Sep 17 00:00:00 2001 From: Jakob Bornecrantz Date: Wed, 23 Feb 2022 13:26:34 +0000 Subject: [PATCH] aux/vk: Order files in build scripts (NFC) --- src/xrt/auxiliary/CMakeLists.txt | 2 +- src/xrt/auxiliary/meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xrt/auxiliary/CMakeLists.txt b/src/xrt/auxiliary/CMakeLists.txt index 4e98e177e..290106da4 100644 --- a/src/xrt/auxiliary/CMakeLists.txt +++ b/src/xrt/auxiliary/CMakeLists.txt @@ -253,9 +253,9 @@ if(XRT_HAVE_VULKAN) vk/vk_helpers.h vk/vk_image_allocator.c vk/vk_image_allocator.h - vk/vk_state_creators.c vk/vk_image_readback_to_xf_pool.c vk/vk_image_readback_to_xf_pool.h + vk/vk_state_creators.c ) target_link_libraries(aux_vk PUBLIC aux_os aux_util) target_link_libraries(aux_vk PUBLIC Vulkan::Vulkan) diff --git a/src/xrt/auxiliary/meson.build b/src/xrt/auxiliary/meson.build index 5946d7acd..d070c88af 100644 --- a/src/xrt/auxiliary/meson.build +++ b/src/xrt/auxiliary/meson.build @@ -293,9 +293,9 @@ lib_aux_vk = static_library( 'vk/vk_helpers.c', 'vk/vk_image_allocator.h', 'vk/vk_image_allocator.c', - 'vk/vk_state_creators.c', 'vk/vk_image_readback_to_xf_pool.h', 'vk/vk_image_readback_to_xf_pool.c', + 'vk/vk_state_creators.c', ), include_directories: [ xrt_include,