From 6a7806616b7eef686fc2b334e42fb3b0eb9415fb Mon Sep 17 00:00:00 2001 From: Slawomir Cygan Date: Mon, 6 Feb 2023 14:17:29 +0100 Subject: [PATCH] Copy ffmpeg DLLs to binary build project directory This eases the build system integration, as all needed DLLs are copied to the same place. This restores the copy directive from before bebd9465 Components: Vulkan VK-GL-CTS Issue: 4275 Change-Id: I1dfad1d3e1a5fb8d3fa106cac35b1c9b6a829651 --- external/vulkancts/modules/vulkan/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/external/vulkancts/modules/vulkan/CMakeLists.txt b/external/vulkancts/modules/vulkan/CMakeLists.txt index 845465d..0e152cf 100644 --- a/external/vulkancts/modules/vulkan/CMakeLists.txt +++ b/external/vulkancts/modules/vulkan/CMakeLists.txt @@ -259,6 +259,10 @@ elseif(DE_OS_IS_UNIX) add_data_dir(deqp-vk ../../../video-parser/src/vk_video_decoder/bin/libs/nv_vkvideo_parser/linux_amd64_release ${BINARY_COPY_DIR}) endif() +if (DE_OS_IS_WIN32) + add_data_dir(deqp-vk ../../../ffmpeg/src/bin ${BINARY_COPY_DIR}) +endif() + if (DE_OS_IS_WIN32 OR DE_OS_IS_UNIX OR DE_OS_IS_OSX) add_executable(vk-build-programs vktBuildPrograms.cpp) target_link_libraries(vk-build-programs deqp-vk${MODULE_LIB_TARGET_POSTFIX}) -- 2.7.4