diff options
| author | 2022-12-17 23:27:18 -0800 | |
|---|---|---|
| committer | 2023-06-03 00:05:26 -0700 | |
| commit | e6d5dbb58ee894e44b7aa53064de0aec78795fef (patch) | |
| tree | a10c15f6af51bce573b541eb5a85072ef065f31d /src/CMakeLists.txt | |
| parent | android: Add Citra frontend. (diff) | |
| download | yuzu-e6d5dbb58ee894e44b7aa53064de0aec78795fef.tar.gz yuzu-e6d5dbb58ee894e44b7aa53064de0aec78795fef.tar.xz yuzu-e6d5dbb58ee894e44b7aa53064de0aec78795fef.zip | |
android: Minimal JNI for yuzu.
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 5e3a74c0f..55b113297 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt | |||
| @@ -195,3 +195,8 @@ endif() | |||
| 195 | if (ENABLE_WEB_SERVICE) | 195 | if (ENABLE_WEB_SERVICE) |
| 196 | add_subdirectory(web_service) | 196 | add_subdirectory(web_service) |
| 197 | endif() | 197 | endif() |
| 198 | |||
| 199 | if (ANDROID) | ||
| 200 | add_subdirectory(android/app/src/main/jni) | ||
| 201 | target_include_directories(yuzu-android PRIVATE android/app/src/main) | ||
| 202 | endif() | ||