[cmake] fix tests comp error on Windows
Some checks failed
eden-license / license-header (pull_request) Failing after 24s

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 03c7d6ce4a
commit c2930505ce
Signed by: crueter
GPG key ID: 425ACD2D4830EBC6

View file

@ -21,7 +21,7 @@ add_executable(tests
create_target_directory_groups(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) target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} Catch2::Catch2WithMain Threads::Threads)
add_test(NAME tests COMMAND tests) add_test(NAME tests COMMAND tests)