summaryrefslogtreecommitdiff
path: root/externals/find-modules
diff options
context:
space:
mode:
authorGravatar lat9nq2022-12-01 00:49:58 -0500
committerGravatar lat9nq2022-12-01 00:49:58 -0500
commit5ff19890e9d2a07d1c0246f3807cdefcb36aca7d (patch)
treea2b9a1a13deb277c2847e069dd6e56d81b747df2 /externals/find-modules
parentMerge pull request #9366 from zhaobot/tx-update-20221201025957 (diff)
downloadyuzu-5ff19890e9d2a07d1c0246f3807cdefcb36aca7d.tar.gz
yuzu-5ff19890e9d2a07d1c0246f3807cdefcb36aca7d.tar.xz
yuzu-5ff19890e9d2a07d1c0246f3807cdefcb36aca7d.zip
CMake: Fix FFmpeg find module
Uses find_package_handle_standard_args to handle the find_package call from the root CMakeLists. Removes all the unnecessary logic after the find_package and just sets it to REQUIRED.
Diffstat (limited to 'externals/find-modules')
-rw-r--r--externals/find-modules/FindFFmpeg.cmake8
1 files changed, 8 insertions, 0 deletions
diff --git a/externals/find-modules/FindFFmpeg.cmake b/externals/find-modules/FindFFmpeg.cmake
index add5b2c01..eedf28aea 100644
--- a/externals/find-modules/FindFFmpeg.cmake
+++ b/externals/find-modules/FindFFmpeg.cmake
@@ -185,3 +185,11 @@ foreach(c ${_FFmpeg_ALL_COMPONENTS})
185endforeach() 185endforeach()
186unset(_FFmpeg_ALL_COMPONENTS) 186unset(_FFmpeg_ALL_COMPONENTS)
187unset(_FFmpeg_REQUIRED_VARS) 187unset(_FFmpeg_REQUIRED_VARS)
188
189include(FindPackageHandleStandardArgs)
190find_package_handle_standard_args(FFmpeg
191 REQUIRED_VARS
192 FFmpeg_LIBRARIES
193 FFmpeg_INCLUDE_DIR
194 HANDLE_COMPONENTS
195)