mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-27 08:08:12 -05:00
Added configuration file system.
Uses QSettings on citra-qt, and inih on citra-cli.
This commit is contained in:
@ -1,9 +1,12 @@
|
||||
set(SRCS
|
||||
emu_window/emu_window_glfw.cpp
|
||||
citra.cpp
|
||||
config.cpp
|
||||
)
|
||||
set(HEADERS
|
||||
emu_window/emu_window_glfw.h
|
||||
config.h
|
||||
default_ini.h
|
||||
resource.h
|
||||
)
|
||||
|
||||
@ -16,7 +19,7 @@ endif()
|
||||
|
||||
add_executable(citra ${SRCS} ${HEADERS})
|
||||
target_link_libraries(citra core common video_core)
|
||||
target_link_libraries(citra ${OPENGL_gl_LIBRARY} ${GLFW_LIBRARIES})
|
||||
target_link_libraries(citra ${OPENGL_gl_LIBRARY} ${GLFW_LIBRARIES} inih)
|
||||
|
||||
if (APPLE)
|
||||
target_link_libraries(citra iconv pthread ${COREFOUNDATION_LIBRARY})
|
||||
|
Reference in New Issue
Block a user