summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index aecb46872..efc4a9fe9 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -202,6 +202,11 @@ create_target_directory_groups(common)
202target_link_libraries(common PUBLIC Boost::context Boost::headers fmt::fmt microprofile Threads::Threads) 202target_link_libraries(common PUBLIC Boost::context Boost::headers fmt::fmt microprofile Threads::Threads)
203target_link_libraries(common PRIVATE lz4::lz4 zstd::zstd LLVM::Demangle) 203target_link_libraries(common PRIVATE lz4::lz4 zstd::zstd LLVM::Demangle)
204 204
205if (ANDROID)
206 # For ASharedMemory_create
207 target_link_libraries(common PRIVATE android)
208endif()
209
205if (YUZU_USE_PRECOMPILED_HEADERS) 210if (YUZU_USE_PRECOMPILED_HEADERS)
206 target_precompile_headers(common PRIVATE precompiled_headers.h) 211 target_precompile_headers(common PRIVATE precompiled_headers.h)
207endif() 212endif()