summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar t8952023-11-12 02:03:55 -0500
committerGravatar t8952023-11-21 01:58:13 -0500
commitaa2031196938c43590e5bea736edc05776c609a2 (patch)
tree6d642b339f34475ffc32fdc22dea8a0105602f69 /src
parentconfig: Unify config handling under frontend_common (diff)
downloadyuzu-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.txt2
-rw-r--r--src/yuzu_cmd/CMakeLists.txt2
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
23set_property(TARGET yuzu-android PROPERTY IMPORTED_LOCATION ${FFmpeg_LIBRARY_DIR}) 23set_property(TARGET yuzu-android PROPERTY IMPORTED_LOCATION ${FFmpeg_LIBRARY_DIR})
24 24
25target_link_libraries(yuzu-android PRIVATE android camera2ndk EGL glad inih jnigraphics log)
26target_link_libraries(yuzu-android PRIVATE audio_core common core input_common frontend_common) 25target_link_libraries(yuzu-android PRIVATE audio_core common core input_common frontend_common)
26target_link_libraries(yuzu-android PRIVATE android camera2ndk EGL glad jnigraphics log)
27if (ARCHITECTURE_arm64) 27if (ARCHITECTURE_arm64)
28 target_link_libraries(yuzu-android PRIVATE adrenotools) 28 target_link_libraries(yuzu-android PRIVATE adrenotools)
29endif() 29endif()
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
31create_target_directory_groups(yuzu-cmd) 31create_target_directory_groups(yuzu-cmd)
32 32
33target_link_libraries(yuzu-cmd PRIVATE inih::INIReader glad)
34target_link_libraries(yuzu-cmd PRIVATE common core input_common frontend_common) 33target_link_libraries(yuzu-cmd PRIVATE common core input_common frontend_common)
34target_link_libraries(yuzu-cmd PRIVATE glad)
35if (MSVC) 35if (MSVC)
36 target_link_libraries(yuzu-cmd PRIVATE getopt) 36 target_link_libraries(yuzu-cmd PRIVATE getopt)
37endif() 37endif()