diff options
| author | 2024-02-09 11:49:25 -0500 | |
|---|---|---|
| committer | 2024-02-09 11:49:25 -0500 | |
| commit | 7ec7ff0f303504950e4270e91076a33efd0ceb17 (patch) | |
| tree | 1e8346f775550eefd491aa8280412d86000dd637 /src/common/CMakeLists.txt | |
| parent | Merge pull request #12927 from german77/cheat-pause (diff) | |
| parent | android: Run OnEmulationStarted frontend callback in another thread (diff) | |
| download | yuzu-7ec7ff0f303504950e4270e91076a33efd0ceb17.tar.gz yuzu-7ec7ff0f303504950e4270e91076a33efd0ceb17.tar.xz yuzu-7ec7ff0f303504950e4270e91076a33efd0ceb17.zip | |
Merge pull request #12920 from t895/jni-common
android: Move JNI setup and helpers to common
Diffstat (limited to 'src/common/CMakeLists.txt')
| -rw-r--r-- | src/common/CMakeLists.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index c19af2ab8..779be211e 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -182,9 +182,15 @@ endif() | |||
| 182 | 182 | ||
| 183 | if(ANDROID) | 183 | if(ANDROID) |
| 184 | target_sources(common | 184 | target_sources(common |
| 185 | PRIVATE | 185 | PUBLIC |
| 186 | fs/fs_android.cpp | 186 | fs/fs_android.cpp |
| 187 | fs/fs_android.h | 187 | fs/fs_android.h |
| 188 | android/android_common.cpp | ||
| 189 | android/android_common.h | ||
| 190 | android/id_cache.cpp | ||
| 191 | android/id_cache.h | ||
| 192 | android/applets/software_keyboard.cpp | ||
| 193 | android/applets/software_keyboard.h | ||
| 188 | ) | 194 | ) |
| 189 | endif() | 195 | endif() |
| 190 | 196 | ||