Add ChaiGame

This commit is contained in:
Rob Loach 2017-07-14 20:03:19 -04:00
parent 665c5f49e3
commit a30b697fef
No known key found for this signature in database
GPG Key ID: 627C60834A74A21A
7 changed files with 24 additions and 0 deletions

View File

@ -186,6 +186,7 @@ include_core_3dengine
include_core_2048
include_core_stonesoup
include_core_scummvm
include_core_chaigame
# --- Miscellaneous cores ---
include_core_video_processor

11
dist/info/chaigame_libretro.info vendored Normal file
View File

@ -0,0 +1,11 @@
display_name = "ChaiGame"
authors = "Rob Loach"
supported_extensions = "chai|chaigame"
corename = "ChaiGame"
categories = "Game engine"
systemname = "ChaiGame"
database = "ChaiGame"
license = "MIT"
permissions = ""
display_version = "0.1.0"
supports_no_game = "false"

View File

@ -212,6 +212,7 @@ build_libretro_databases() {
build_libretro_database "ScummVM" "rom.crc"
build_libretro_database "DOS" "rom.crc"
build_libretro_database "Lutro" "rom.name"
build_libretro_database "ChaiGame" "rom.crc"
build_libretro_database "Nintendo - Super Nintendo Entertainment System" "rom.crc"
build_libretro_database "Sony - PlayStation" "rom.serial"
build_libretro_database "Atari - Jaguar" "rom.crc"

View File

@ -11,6 +11,7 @@ bsnes_mercury libretro-bsnes_mercury https://github.com/libretro/bsnes-mercury.g
bsnes_mercury libretro-bsnes_mercury https://github.com/libretro/bsnes-mercury.git master PROJECT YES BSNES Makefile . balanced
bsnes_mercury libretro-bsnes_mercury https://github.com/libretro/bsnes-mercury.git master PROJECT YES BSNES Makefile . performance
cap32 libretro-cap32 https://github.com/libretro/libretro-cap32.git master PROJECT YES GENERIC Makefile .
chaigame libretro-chaigame https://github.com/RobLoach/ChaiGame.git master PROJECT YES GENERIC Makefile .
desmume libretro-desmume https://github.com/libretro/desmume.git master PROJECT YES GENERIC Makefile.libretro desmume platform=armv7-neon-hardfloat
dinothawr libretro-dinothawr https://github.com/libretro/Dinothawr.git master PROJECT YES GENERIC Makefile .
dosbox libretro-dosbox https://github.com/libretro/dosbox-libretro.git master PROJECT YES GENERIC Makefile.libretro .

View File

@ -14,6 +14,7 @@ citra libretro-citra https://github.com/libretro/citra.git master SUBMODULE YES
craft libretro-craft https://github.com/libretro/craft master PROJECT YES GENERIC Makefile.libretro .
crocods libretro-crocods https://github.com/libretro/libretro-crocods.git master SUBMODULE YES GENERIC Makefile .
cap32 libretro-cap32 https://github.com/libretro/libretro-cap32.git master PROJECT YES GENERIC Makefile .
chaigame libretro-chaigame https://github.com/RobLoach/ChaiGame.git master PROJECT YES GENERIC Makefile .
desmume libretro-desmume https://github.com/libretro/desmume.git master PROJECT YES GENERIC Makefile.libretro desmume
dinothawr libretro-dinothawr https://github.com/libretro/Dinothawr.git master PROJECT YES GENERIC Makefile .
dolphin libretro-dolphin https://github.com/libretro/dolphin.git master PROJECT YES GENERIC Makefile Source/Core/DolphinLibretro/

View File

@ -13,6 +13,7 @@ bsnes_mercury libretro-bsnes_mercury https://github.com/libretro/bsnes-mercury.g
craft libretro-craft https://github.com/libretro/craft master PROJECT YES GENERIC Makefile.libretro .
crocods libretro-crocods https://github.com/libretro/libretro-crocods.git master SUBMODULE YES GENERIC Makefile .
cap32 libretro-cap32 https://github.com/libretro/libretro-cap32.git master PROJECT YES GENERIC Makefile .
chaigame libretro-chaigame https://github.com/RobLoach/ChaiGame.git master PROJECT YES GENERIC Makefile .
desmume libretro-desmume https://github.com/libretro/desmume.git master PROJECT YES GENERIC Makefile.libretro desmume
dinothawr libretro-dinothawr https://github.com/libretro/Dinothawr.git master PROJECT YES GENERIC Makefile .
dosbox libretro-dosbox https://github.com/libretro/dosbox-libretro.git master PROJECT YES GENERIC Makefile.libretro .

View File

@ -767,6 +767,14 @@ libretro_gw_git_url="https://github.com/libretro/gw-libretro.git"
libretro_gw_git_submodules="yes"
libretro_gw_build_makefile="Makefile.libretro"
include_core_chaigame() {
register_module core "chaigame" -theos_ios -ngc -sncps3 -ps3 -psp1 -qnx -wii
}
libretro_chaigame_name="ChaiGame"
libretro_chaigame_git_url="https://github.com/RobLoach/ChaiGame.git"
libretro_chaigame_git_submodules="yes"
libretro_chaigame_build_makefile="Makefile"
include_core_81() {
register_module core "81" -theos_ios -ngc -sncps3 -ps3 -psp1 -qnx -wii
}