diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2024-02-09 11:49:25 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-09 11:49:25 -0500 |
| commit | 7ec7ff0f303504950e4270e91076a33efd0ceb17 (patch) | |
| tree | 1e8346f775550eefd491aa8280412d86000dd637 /src/common/CMakeLists.txt | |
| parent | a133eadf0679ba55615d13cf2dfc3df5b1ea6f4b (diff) | |
| parent | 2600ac65c8101c69988f2506739e6ddef05b23c7 (diff) | |
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() if(ANDROID) target_sources(common - PRIVATE + PUBLIC fs/fs_android.cpp fs/fs_android.h + android/android_common.cpp + android/android_common.h + android/id_cache.cpp + android/id_cache.h + android/applets/software_keyboard.cpp + android/applets/software_keyboard.h ) endif() |
