mirror of
https://github.com/mikage-emu/mikage-dev.git
synced 2025-01-20 12:31:06 +01:00
17 lines
689 B
CMake
17 lines
689 B
CMake
# This directory contains pre-built NCCH archives that provide freely licensed
|
|
# alternatives to system archives not included in game update partitions.
|
|
#
|
|
# The build scripts are located at https://github.com/mikage-emu/conan-3ds/tree/mikage/packages/citra_system_archives,
|
|
# which is based on https://github.com/B3n30/citra_system_archives.
|
|
|
|
set(TITLES
|
|
"0004009b/00010202"
|
|
"0004009b/00010402"
|
|
"0004009b/00014002"
|
|
"000400db/00010302"
|
|
"000400db/00016102")
|
|
|
|
include(GNUInstallDirs)
|
|
foreach(TITLE ${TITLES})
|
|
install(FILES "${TITLE}/content/00000000.app" RENAME "00000000.cxi" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/mikage/nand/title/${TITLE}/content")
|
|
endforeach()
|