diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-06-28 12:53:17 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-28 12:53:17 -0400 |
| commit | b60b70e86d7c32b06a7580ddc286279a83587e11 (patch) | |
| tree | ea6092ba2bda4b2f685926ba133faedd5c65fa57 /src/video_core/CMakeLists.txt | |
| parent | 0fe44071f8fc8c49fcd885e39f2e914846450733 (diff) | |
| parent | ddcc95833660c57647d3e99dad76ecfa3b86ee8d (diff) | |
Merge pull request #10837 from liamwhite/mali-support
android: Mali support
Diffstat (limited to 'src/video_core/CMakeLists.txt')
| -rw-r--r-- | src/video_core/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt index e9e6f278d..3b2fe01da 100644 --- a/src/video_core/CMakeLists.txt +++ b/src/video_core/CMakeLists.txt @@ -220,8 +220,8 @@ add_library(video_core STATIC surface.h texture_cache/accelerated_swizzle.cpp texture_cache/accelerated_swizzle.h - texture_cache/decode_bc4.cpp - texture_cache/decode_bc4.h + texture_cache/decode_bc.cpp + texture_cache/decode_bc.h texture_cache/descriptor_table.h texture_cache/formatter.cpp texture_cache/formatter.h @@ -279,7 +279,7 @@ add_library(video_core STATIC create_target_directory_groups(video_core) target_link_libraries(video_core PUBLIC common core) -target_link_libraries(video_core PUBLIC glad shader_recompiler stb) +target_link_libraries(video_core PUBLIC glad shader_recompiler stb bc_decoder) if (YUZU_USE_BUNDLED_FFMPEG AND NOT (WIN32 OR ANDROID)) add_dependencies(video_core ffmpeg-build) |
