From c2930505ced2778330649c666f33b89b730e17a7 Mon Sep 17 00:00:00 2001 From: crueter Date: Tue, 30 Sep 2025 21:31:18 -0400 Subject: [PATCH] [cmake] fix tests comp error on Windows did not link to video_core thus did not properly propagate the GPUOpen target thus failed to find vk_mem_alloc Signed-off-by: crueter --- src/tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt index 1e158f3759..abb2f3715b 100644 --- a/src/tests/CMakeLists.txt +++ b/src/tests/CMakeLists.txt @@ -21,7 +21,7 @@ add_executable(tests create_target_directory_groups(tests) -target_link_libraries(tests PRIVATE common core input_common) +target_link_libraries(tests PRIVATE common core input_common video_core) target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} Catch2::Catch2WithMain Threads::Threads) add_test(NAME tests COMMAND tests)