summaryrefslogtreecommitdiff
path: root/src/audio_core
diff options
context:
space:
mode:
authorGravatar liamwhite2024-01-29 09:08:46 -0500
committerGravatar GitHub2024-01-29 09:08:46 -0500
commit90cb8529086cddd4487056e5f068552bf6126e64 (patch)
tree2078c8cacf00442ed867a7d7a6cf19bd6d0ae3d2 /src/audio_core
parentMerge pull request #12439 from FireBurn/vkresult (diff)
parentMove time services to new IPC. (diff)
downloadyuzu-90cb8529086cddd4487056e5f068552bf6126e64.tar.gz
yuzu-90cb8529086cddd4487056e5f068552bf6126e64.tar.xz
yuzu-90cb8529086cddd4487056e5f068552bf6126e64.zip
Merge pull request #12814 from Kelebek1/time_new_ipc
Move time services to new IPC and add debug printing
Diffstat (limited to 'src/audio_core')
-rw-r--r--src/audio_core/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_core/CMakeLists.txt b/src/audio_core/CMakeLists.txt
index e982d03be..4e4ed1789 100644
--- a/src/audio_core/CMakeLists.txt
+++ b/src/audio_core/CMakeLists.txt
@@ -210,8 +210,6 @@ add_library(audio_core STATIC
210 sink/sink_stream.h 210 sink/sink_stream.h
211) 211)
212 212
213create_target_directory_groups(audio_core)
214
215if (MSVC) 213if (MSVC)
216 target_compile_options(audio_core PRIVATE 214 target_compile_options(audio_core PRIVATE
217 /we4242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data 215 /we4242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data
@@ -267,3 +265,5 @@ endif()
267if (YUZU_USE_PRECOMPILED_HEADERS) 265if (YUZU_USE_PRECOMPILED_HEADERS)
268 target_precompile_headers(audio_core PRIVATE precompiled_headers.h) 266 target_precompile_headers(audio_core PRIVATE precompiled_headers.h)
269endif() 267endif()
268
269create_target_directory_groups(audio_core)