mirror of
https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
synced 2025-12-23 12:12:40 +00:00
This also removes irrelevant data and adds new information from/to the Game data class and RomMetadata struct
32 lines
923 B
CMake
32 lines
923 B
CMake
# SPDX-FileCopyrightText: 2023 yuzu Emulator Project
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
add_library(yuzu-android SHARED
|
|
android_common/android_common.cpp
|
|
android_common/android_common.h
|
|
applets/software_keyboard.cpp
|
|
applets/software_keyboard.h
|
|
config.cpp
|
|
config.h
|
|
default_ini.h
|
|
emu_window/emu_window.cpp
|
|
emu_window/emu_window.h
|
|
id_cache.cpp
|
|
id_cache.h
|
|
native.cpp
|
|
native.h
|
|
native_config.cpp
|
|
uisettings.cpp
|
|
game_metadata.cpp
|
|
)
|
|
|
|
set_property(TARGET yuzu-android PROPERTY IMPORTED_LOCATION ${FFmpeg_LIBRARY_DIR})
|
|
|
|
target_link_libraries(yuzu-android PRIVATE audio_core common core input_common)
|
|
target_link_libraries(yuzu-android PRIVATE android camera2ndk EGL glad inih jnigraphics log)
|
|
if (ARCHITECTURE_arm64)
|
|
target_link_libraries(yuzu-android PRIVATE adrenotools)
|
|
endif()
|
|
|
|
set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} yuzu-android)
|