diff options
| author | 2021-12-02 22:35:30 -0700 | |
|---|---|---|
| committer | 2021-12-02 22:35:30 -0700 | |
| commit | e7f10de11a935423b233cda0b156e5e8e786bd1f (patch) | |
| tree | f786643f712362f69881038e6bbdf5a7c3f03754 /src | |
| parent | video_core/codecs: more fixes for VAAPI detection ... (diff) | |
| download | yuzu-e7f10de11a935423b233cda0b156e5e8e786bd1f.tar.gz yuzu-e7f10de11a935423b233cda0b156e5e8e786bd1f.tar.xz yuzu-e7f10de11a935423b233cda0b156e5e8e786bd1f.zip | |
video_core/cmake: link against libva explicitly ...
... to fix build on Flatpak (and self-builds)
Diffstat (limited to '')
| -rw-r--r-- | src/video_core/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt index 91a30fef7..6a6325e38 100644 --- a/src/video_core/CMakeLists.txt +++ b/src/video_core/CMakeLists.txt | |||
| @@ -3,6 +3,7 @@ add_subdirectory(host_shaders) | |||
| 3 | if(LIBVA_FOUND) | 3 | if(LIBVA_FOUND) |
| 4 | set_source_files_properties(command_classes/codecs/codec.cpp | 4 | set_source_files_properties(command_classes/codecs/codec.cpp |
| 5 | PROPERTIES COMPILE_DEFINITIONS LIBVA_FOUND=1) | 5 | PROPERTIES COMPILE_DEFINITIONS LIBVA_FOUND=1) |
| 6 | list(APPEND FFmpeg_LIBRARIES ${LIBVA_LIBRARIES}) | ||
| 6 | endif() | 7 | endif() |
| 7 | 8 | ||
| 8 | add_library(video_core STATIC | 9 | add_library(video_core STATIC |