Skip to content

Commit

Permalink
Updated by kodi-game-scripting
Browse files Browse the repository at this point in the history
  • Loading branch information
garbear committed Jul 18, 2024
1 parent 2b67856 commit a7f1255
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sync-addon-metadata-translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Sync addon metadata translations

on:
push:
branches: [ master, Matrix, Nexus ]
branches: [ master, Matrix, Nexus, Omega ]
paths:
- '**addon.xml.in'
- '**resource.language.**strings.po'
Expand Down
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR})

find_package(Kodi REQUIRED)

set(CMAKE_CXX_STANDARD 17)

# CMake on windows only searches for .lib libraries (static library or import library).
# The libretro game library is dynamically loaded so even if an import library would exists it's of no use.
if(CMAKE_SYSTEM_NAME STREQUAL Windows)
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
buildPlugin(version: "Nexus", platforms: ["android-aarch64", "android-armv7", "osx-x86_64", "osx-arm64", "windows-i686", "windows-x86_64"])
buildPlugin(version: "Omega", platforms: ["android-aarch64", "android-armv7", "osx-x86_64", "osx-arm64", "windows-i686", "windows-x86_64"])
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Maintainer: wsnipex <[email protected]>
Build-Depends: debhelper (>= 9.0.0),
cmake,
kodi-addon-dev,
libretro-vbam (>= 2.1.8) | vbam (>= 2.1.8)
libretro-vbam (>= 2.1.9) | vbam (>= 2.1.9)
Standards-Version: 3.9.8
Section: libs

Expand Down
56 changes: 48 additions & 8 deletions depends/common/vbam/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,36 @@ if(CORE_SYSTEM_NAME STREQUAL windows)
else()
set(MSYSTEM MINGW32)
endif()
set(BUILD_COMMAND ${MINGW_MAKE} -j$ENV{NUMBER_OF_PROCESSORS} -C src/libretro -f Makefile platform=win MSYSTEM=${MSYSTEM} ${LIBRETRO_DEBUG} GIT_VERSION=)
set(BUILD_COMMAND ${MINGW_MAKE}
-j$ENV{NUMBER_OF_PROCESSORS}
-C src/libretro
-f Makefile
platform=win
MSYSTEM=${MSYSTEM}
${LIBRETRO_DEBUG} GIT_VERSION=)
elseif(CORE_SYSTEM_NAME STREQUAL linux)
set(BUILD_COMMAND $(MAKE) -C src/libretro -f Makefile platform=unix ${LIBRETRO_DEBUG} GIT_VERSION=)
set(BUILD_COMMAND $(MAKE)
-j
-C src/libretro
-f Makefile
platform=unix
${LIBRETRO_DEBUG} GIT_VERSION=)
elseif(CORE_SYSTEM_NAME STREQUAL osx)
if(CPU STREQUAL arm64)
set(ARCH arm)
else()
set(ARCH intel)
endif()
set(BUILD_COMMAND $(MAKE) -C src/libretro -f Makefile platform=osx arch=${ARCH} ${LIBRETRO_DEBUG} GIT_VERSION=)
set(BUILD_COMMAND $(MAKE)
-j
-C src/libretro
-f Makefile
platform=osx
arch=${ARCH}
CROSS_COMPILE=1
LIBRETRO_APPLE_PLATFORM=${CPU}-apple-macos
LIBRETRO_APPLE_ISYSROOT=${CMAKE_OSX_SYSROOT}
${LIBRETRO_DEBUG} GIT_VERSION=)
elseif(CORE_SYSTEM_NAME STREQUAL ios OR CORE_SYSTEM_NAME STREQUAL darwin_embedded)
if(CORE_PLATFORM_NAME STREQUAL ios)
set(LIBRETRO_SONAME vbam_libretro_ios${CMAKE_SHARED_LIBRARY_SUFFIX})
Expand All @@ -40,10 +60,20 @@ elseif(CORE_SYSTEM_NAME STREQUAL ios OR CORE_SYSTEM_NAME STREQUAL darwin_embedde
else()
set(PLATFORM ios)
endif()
set(BUILD_COMMAND IOSSDK=${CMAKE_OSX_SYSROOT} $(MAKE) -C src/libretro -f Makefile platform=${PLATFORM} ${LIBRETRO_DEBUG} GIT_VERSION=)
set(BUILD_COMMAND IOSSDK=${CMAKE_OSX_SYSROOT} $(MAKE)
-j
-C src/libretro
-f Makefile
platform=${PLATFORM}
${LIBRETRO_DEBUG} GIT_VERSION=)
elseif(CORE_PLATFORM_NAME STREQUAL tvos)
set(LIBRETRO_SONAME vbam_libretro_tvos${CMAKE_SHARED_LIBRARY_SUFFIX})
set(BUILD_COMMAND IOSSDK=${CMAKE_OSX_SYSROOT} $(MAKE) -C src/libretro -f Makefile platform=tvos-arm64 ${LIBRETRO_DEBUG} GIT_VERSION=)
set(BUILD_COMMAND IOSSDK=${CMAKE_OSX_SYSROOT} $(MAKE)
-j
-C src/libretro
-f Makefile
platform=tvos-arm64
${LIBRETRO_DEBUG} GIT_VERSION=)
endif()
elseif(CORE_SYSTEM_NAME STREQUAL android)
if(NOT NDKROOT)
Expand All @@ -56,13 +86,23 @@ elseif(CORE_SYSTEM_NAME STREQUAL android)
else()
message(FATAL_ERROR "${PROJECT_NAME} needs Android ${CPU} build command in CMakeLists.txt!")
endif()
set(BUILD_COMMAND GNUMAKE=$(MAKE) ${NDKROOT}/ndk-build -C src/libretro/jni APP_ABI=${PLATFORM} V7NEONOPTIMIZATION=1 GIT_VERSION=
NDK_LIBS_OUT=${PROJECT_SOURCE_DIR}/${LIBRETRO_BINARY_DIR} ${LIBRETRO_DEBUG} V=1
set(BUILD_COMMAND GNUMAKE=$(MAKE) ${NDKROOT}/ndk-build
-C src/libretro/jni
APP_ABI=${PLATFORM}
V7NEONOPTIMIZATION=1
NDK_LIBS_OUT=${PROJECT_SOURCE_DIR}/${LIBRETRO_BINARY_DIR}
V=1
${LIBRETRO_DEBUG} GIT_VERSION=
&& cp ${PROJECT_SOURCE_DIR}/${LIBRETRO_BINARY_DIR}/${PLATFORM}/${LIBRETRO_JNISONAME} ${PROJECT_SOURCE_DIR}/${LIBRETRO_BINARY_DIR}/${LIBRETRO_SONAME})
elseif(CORE_SYSTEM_NAME STREQUAL rbpi)
message(FATAL_ERROR "${PROJECT_NAME} needs RPi build command in CMakeLists.txt!")
elseif(CORE_SYSTEM_NAME STREQUAL freebsd)
set(BUILD_COMMAND $(MAKE) -C src/libretro -f Makefile platform=unix ${LIBRETRO_DEBUG} GIT_VERSION=)
set(BUILD_COMMAND $(MAKE)
-j
-C src/libretro
-f Makefile
platform=unix
${LIBRETRO_DEBUG} GIT_VERSION=)
else()
message(FATAL_ERROR "${PROJECT_NAME} - Unknown system: ${CORE_SYSTEM_NAME}")
endif()
Expand Down
2 changes: 1 addition & 1 deletion depends/common/vbam/vbam.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
vbam https://github.com/visualboyadvance-m/visualboyadvance-m/archive/2ad7dd1a7980c808fffc9843d6e8bbf3b0112b2a.tar.gz
vbam https://github.com/visualboyadvance-m/visualboyadvance-m/archive/a7b545ab1a5ce0f7f38f63ef923c8fc4db3fe044.tar.gz
2 changes: 1 addition & 1 deletion game.libretro.vbam/addon.xml.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon id="game.libretro.vbam"
name="Nintendo - Game Boy Advance (VBA-M)"
version="2.1.8.46"
version="2.1.9.47"
provider-name="Forgotten, VBA-M Team">
<requires>
<import addon="game.libretro" version="1.0.0"/>
Expand Down

0 comments on commit a7f1255

Please sign in to comment.