diff options
| author | 2023-02-03 16:13:16 -0800 | |
|---|---|---|
| committer | 2023-06-03 00:05:29 -0700 | |
| commit | ef605f7d8f8241b95b977d95cf5247c1f2d8a309 (patch) | |
| tree | 7e9dcc62168e23115d05119a5854d59544c89b8d /src/common/CMakeLists.txt | |
| parent | android: Harden emulation shutdown when loader fails. (diff) | |
| download | yuzu-ef605f7d8f8241b95b977d95cf5247c1f2d8a309.tar.gz yuzu-ef605f7d8f8241b95b977d95cf5247c1f2d8a309.tar.xz yuzu-ef605f7d8f8241b95b977d95cf5247c1f2d8a309.zip | |
android: Implement SAF support & migrate to SDK 31. (#4)
Diffstat (limited to 'src/common/CMakeLists.txt')
| -rw-r--r-- | src/common/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 13ed68b3f..aecb46872 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -155,6 +155,14 @@ if (WIN32) | |||
| 155 | target_link_libraries(common PRIVATE ntdll) | 155 | target_link_libraries(common PRIVATE ntdll) |
| 156 | endif() | 156 | endif() |
| 157 | 157 | ||
| 158 | if(ANDROID) | ||
| 159 | target_sources(common | ||
| 160 | PRIVATE | ||
| 161 | fs/fs_android.cpp | ||
| 162 | fs/fs_android.h | ||
| 163 | ) | ||
| 164 | endif() | ||
| 165 | |||
| 158 | if(ARCHITECTURE_x86_64) | 166 | if(ARCHITECTURE_x86_64) |
| 159 | target_sources(common | 167 | target_sources(common |
| 160 | PRIVATE | 168 | PRIVATE |