suyu/CMakeModules/CopySuyuFFmpegDeps.cmake
SylverDiscord51 1648d189d3
Some checks failed
suyu verify / Verify Format (push) Waiting to run
suyu verify / test build (linux-fresh, clang) (push) Blocked by required conditions
suyu verify / test build (linux-fresh, linux) (push) Blocked by required conditions
suyu verify / test build (linux-mingw, windows) (push) Blocked by required conditions
suyu verify / android (push) Blocked by required conditions
suyu-ci / Check REUSE Specification (push) Failing after 12s
codespell / Check for spelling errors (push) Successful in 10s
license-fix (#31)
Co-authored-by: palfaiate <syl.paulo.alfaiate@gmail.com>
Co-authored-by: SylverDiscord51 <p71468162@gmail.com>
Co-committed-by: SylverDiscord51 <p71468162@gmail.com>
2024-03-23 22:58:07 -03:00

11 lines
491 B
CMake

# SPDX-FileCopyrightText: 2020 yuzu Emulator Project
# SPDX-License-Identifier: GPL-2.0-or-later
function(copy_suyu_FFmpeg_deps target_dir)
include(WindowsCopyFiles)
set(DLL_DEST "$<TARGET_FILE_DIR:${target_dir}>/")
file(READ "${FFmpeg_PATH}/requirements.txt" FFmpeg_REQUIRED_DLLS)
string(STRIP "${FFmpeg_REQUIRED_DLLS}" FFmpeg_REQUIRED_DLLS)
windows_copy_files(${target_dir} ${FFmpeg_LIBRARY_DIR} ${DLL_DEST} ${FFmpeg_REQUIRED_DLLS})
endfunction(copy_suyu_FFmpeg_deps)