mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
Android: Add content provider support to File::IOFile
Taking the hit now to prepare us for when Google Play will force us to use scoped storage...
This commit is contained in:
@ -1,7 +1,6 @@
|
||||
add_library(main SHARED
|
||||
AndroidCommon/AndroidCommon.cpp
|
||||
AndroidCommon/IDCache.cpp
|
||||
GameList/GameFile.cpp
|
||||
GameList/GameFile.h
|
||||
GameList/GameFileCache.cpp
|
||||
IniFile.cpp
|
||||
MainAndroid.cpp
|
||||
@ -10,6 +9,7 @@ add_library(main SHARED
|
||||
|
||||
target_link_libraries(main
|
||||
PRIVATE
|
||||
androidcommon
|
||||
core
|
||||
uicommon
|
||||
)
|
||||
@ -32,3 +32,5 @@ file(REMOVE_RECURSE ${CMAKE_SOURCE_DIR}/Source/Android/app/src/main/assets/Sys/R
|
||||
file(REMOVE_RECURSE ${CMAKE_SOURCE_DIR}/Source/Android/app/src/main/assets/Sys/Themes/)
|
||||
|
||||
set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} main)
|
||||
|
||||
add_subdirectory(AndroidCommon)
|
||||
|
Reference in New Issue
Block a user