summaryrefslogtreecommitdiff
path: root/src/video_core
diff options
context:
space:
mode:
authorGravatar Kelebek12024-01-26 15:29:04 +0000
committerGravatar Kelebek12024-01-27 03:30:09 +0000
commitda410506a401abc853ee23e56ca1e25eb47cd6e6 (patch)
tree6a42e537b6bfbdb460e7f542e4731fc5cad40dd8 /src/video_core
parentMerge pull request #12808 from t895/uri-moment (diff)
downloadyuzu-da410506a401abc853ee23e56ca1e25eb47cd6e6.tar.gz
yuzu-da410506a401abc853ee23e56ca1e25eb47cd6e6.tar.xz
yuzu-da410506a401abc853ee23e56ca1e25eb47cd6e6.zip
Move time services to new IPC.
Add some fixes/improvements to usage with the new IPC
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt
index 5ed0ad0ed..521a0e253 100644
--- a/src/video_core/CMakeLists.txt
+++ b/src/video_core/CMakeLists.txt
@@ -289,8 +289,6 @@ add_library(video_core STATIC
289 vulkan_common/vulkan.h 289 vulkan_common/vulkan.h
290) 290)
291 291
292create_target_directory_groups(video_core)
293
294target_link_libraries(video_core PUBLIC common core) 292target_link_libraries(video_core PUBLIC common core)
295target_link_libraries(video_core PUBLIC glad shader_recompiler stb bc_decoder) 293target_link_libraries(video_core PUBLIC glad shader_recompiler stb bc_decoder)
296 294
@@ -365,3 +363,5 @@ endif()
365if (ANDROID AND ARCHITECTURE_arm64) 363if (ANDROID AND ARCHITECTURE_arm64)
366 target_link_libraries(video_core PRIVATE adrenotools) 364 target_link_libraries(video_core PRIVATE adrenotools)
367endif() 365endif()
366
367create_target_directory_groups(video_core)