[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 <crueter@eden-emu.dev>
This commit is contained in:
crueter 2025-09-30 21:31:18 -04:00
parent 9a098441de
commit 8aa1a81ace

View file

@ -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)