diff options
| author | 2023-11-12 02:03:55 -0500 | |
|---|---|---|
| committer | 2023-11-21 01:58:13 -0500 | |
| commit | aa2031196938c43590e5bea736edc05776c609a2 (patch) | |
| tree | 6d642b339f34475ffc32fdc22dea8a0105602f69 /src | |
| parent | config: Unify config handling under frontend_common (diff) | |
| download | yuzu-aa2031196938c43590e5bea736edc05776c609a2.tar.gz yuzu-aa2031196938c43590e5bea736edc05776c609a2.tar.xz yuzu-aa2031196938c43590e5bea736edc05776c609a2.zip | |
general: Remove inih
Diffstat (limited to 'src')
| -rw-r--r-- | src/android/app/src/main/jni/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/yuzu_cmd/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/android/app/src/main/jni/CMakeLists.txt b/src/android/app/src/main/jni/CMakeLists.txt index 49ad029aa..2acc93da8 100644 --- a/src/android/app/src/main/jni/CMakeLists.txt +++ b/src/android/app/src/main/jni/CMakeLists.txt | |||
| @@ -22,8 +22,8 @@ add_library(yuzu-android SHARED | |||
| 22 | 22 | ||
| 23 | set_property(TARGET yuzu-android PROPERTY IMPORTED_LOCATION ${FFmpeg_LIBRARY_DIR}) | 23 | set_property(TARGET yuzu-android PROPERTY IMPORTED_LOCATION ${FFmpeg_LIBRARY_DIR}) |
| 24 | 24 | ||
| 25 | target_link_libraries(yuzu-android PRIVATE android camera2ndk EGL glad inih jnigraphics log) | ||
| 26 | target_link_libraries(yuzu-android PRIVATE audio_core common core input_common frontend_common) | 25 | target_link_libraries(yuzu-android PRIVATE audio_core common core input_common frontend_common) |
| 26 | target_link_libraries(yuzu-android PRIVATE android camera2ndk EGL glad jnigraphics log) | ||
| 27 | if (ARCHITECTURE_arm64) | 27 | if (ARCHITECTURE_arm64) |
| 28 | target_link_libraries(yuzu-android PRIVATE adrenotools) | 28 | target_link_libraries(yuzu-android PRIVATE adrenotools) |
| 29 | endif() | 29 | endif() |
diff --git a/src/yuzu_cmd/CMakeLists.txt b/src/yuzu_cmd/CMakeLists.txt index 281e0658e..fbeba8813 100644 --- a/src/yuzu_cmd/CMakeLists.txt +++ b/src/yuzu_cmd/CMakeLists.txt | |||
| @@ -30,8 +30,8 @@ add_executable(yuzu-cmd | |||
| 30 | 30 | ||
| 31 | create_target_directory_groups(yuzu-cmd) | 31 | create_target_directory_groups(yuzu-cmd) |
| 32 | 32 | ||
| 33 | target_link_libraries(yuzu-cmd PRIVATE inih::INIReader glad) | ||
| 34 | target_link_libraries(yuzu-cmd PRIVATE common core input_common frontend_common) | 33 | target_link_libraries(yuzu-cmd PRIVATE common core input_common frontend_common) |
| 34 | target_link_libraries(yuzu-cmd PRIVATE glad) | ||
| 35 | if (MSVC) | 35 | if (MSVC) |
| 36 | target_link_libraries(yuzu-cmd PRIVATE getopt) | 36 | target_link_libraries(yuzu-cmd PRIVATE getopt) |
| 37 | endif() | 37 | endif() |