diff options
author | Slawomir Cygan <slawomir.cygan@intel.com> | 2023-02-06 14:17:29 +0100 |
---|---|---|
committer | Piotr Byszewski <piotr.byszewski@mobica.com> | 2023-03-03 17:07:29 +0000 |
commit | 6a7806616b7eef686fc2b334e42fb3b0eb9415fb (patch) | |
tree | 6dd814079cf673aab886c59768dc93eb72aface4 /external/vulkancts | |
parent | 1f5be51bc831bce8ac0ce62e2b192c23b92aa1b5 (diff) | |
download | VK-GL-CTS-6a7806616b7eef686fc2b334e42fb3b0eb9415fb.tar.gz VK-GL-CTS-6a7806616b7eef686fc2b334e42fb3b0eb9415fb.tar.bz2 VK-GL-CTS-6a7806616b7eef686fc2b334e42fb3b0eb9415fb.zip |
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
Diffstat (limited to 'external/vulkancts')
-rw-r--r-- | external/vulkancts/modules/vulkan/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/external/vulkancts/modules/vulkan/CMakeLists.txt b/external/vulkancts/modules/vulkan/CMakeLists.txt index 845465d96..0e152cf6f 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}) |