diff options
| author | 2022-12-30 00:29:53 -0800 | |
|---|---|---|
| committer | 2023-06-03 00:05:26 -0700 | |
| commit | 851b1008a881010b90002f4af9d0a4ac36710fea (patch) | |
| tree | 6f808aeacafa6fc3dbfdd149940f068291815878 /src | |
| parent | cmake: Integrate submoduled LLVM & fixes for Android. (diff) | |
| download | yuzu-851b1008a881010b90002f4af9d0a4ac36710fea.tar.gz yuzu-851b1008a881010b90002f4af9d0a4ac36710fea.tar.xz yuzu-851b1008a881010b90002f4af9d0a4ac36710fea.zip | |
cmake: Integrate bundled FFmpeg for Android.
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt index 308d013d6..027259f57 100644 --- a/src/video_core/CMakeLists.txt +++ b/src/video_core/CMakeLists.txt | |||
| @@ -281,7 +281,7 @@ create_target_directory_groups(video_core) | |||
| 281 | target_link_libraries(video_core PUBLIC common core) | 281 | target_link_libraries(video_core PUBLIC common core) |
| 282 | target_link_libraries(video_core PUBLIC glad shader_recompiler stb) | 282 | target_link_libraries(video_core PUBLIC glad shader_recompiler stb) |
| 283 | 283 | ||
| 284 | if (YUZU_USE_BUNDLED_FFMPEG AND NOT WIN32) | 284 | if (YUZU_USE_BUNDLED_FFMPEG AND NOT (WIN32 OR ANDROID)) |
| 285 | add_dependencies(video_core ffmpeg-build) | 285 | add_dependencies(video_core ffmpeg-build) |
| 286 | endif() | 286 | endif() |
| 287 | 287 | ||