summaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar bunnei2022-12-17 23:27:18 -0800
committerGravatar bunnei2023-06-03 00:05:26 -0700
commite6d5dbb58ee894e44b7aa53064de0aec78795fef (patch)
treea10c15f6af51bce573b541eb5a85072ef065f31d /src/CMakeLists.txt
parentandroid: Add Citra frontend. (diff)
downloadyuzu-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.txt5
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()
195if (ENABLE_WEB_SERVICE) 195if (ENABLE_WEB_SERVICE)
196 add_subdirectory(web_service) 196 add_subdirectory(web_service)
197endif() 197endif()
198
199if (ANDROID)
200 add_subdirectory(android/app/src/main/jni)
201 target_include_directories(yuzu-android PRIVATE android/app/src/main)
202endif()