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 26fa4fd commit aa1df7e
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 11 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"])
66 changes: 58 additions & 8 deletions depends/common/bluemsx/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,40 @@ if(CORE_SYSTEM_NAME STREQUAL windows)
else()
set(MSYSTEM MINGW32)
endif()
set(BUILD_COMMAND ${MINGW_MAKE} -j$ENV{NUMBER_OF_PROCESSORS} -C . -f Makefile platform=win MSYSTEM=${MSYSTEM} ${LIBRETRO_DEBUG} GIT_VERSION=)
set(BUILD_COMMAND ${MINGW_MAKE}
-j$ENV{NUMBER_OF_PROCESSORS}
-C .
-f Makefile
${LIBRETRO_DEBUG}
GIT_VERSION=
MSYSTEM=${MSYSTEM}
platform=win
)
elseif(CORE_SYSTEM_NAME STREQUAL linux)
set(BUILD_COMMAND $(MAKE) -C . -f Makefile platform=unix ${LIBRETRO_DEBUG} GIT_VERSION=)
set(BUILD_COMMAND $(MAKE)
-C .
-f Makefile
${LIBRETRO_DEBUG}
GIT_VERSION=
platform=unix
)
elseif(CORE_SYSTEM_NAME STREQUAL osx)
if(CPU STREQUAL arm64)
set(ARCH arm)
else()
set(ARCH intel)
endif()
set(BUILD_COMMAND $(MAKE) -C . -f Makefile platform=osx arch=${ARCH} ${LIBRETRO_DEBUG} GIT_VERSION=)
set(BUILD_COMMAND $(MAKE)
-C .
-f Makefile
${LIBRETRO_DEBUG}
arch=${ARCH}
CROSS_COMPILE=1
GIT_VERSION=
LIBRETRO_APPLE_ISYSROOT=${CMAKE_OSX_SYSROOT}
LIBRETRO_APPLE_PLATFORM=${CPU}-apple-macos
platform=osx
)
elseif(CORE_SYSTEM_NAME STREQUAL ios OR CORE_SYSTEM_NAME STREQUAL darwin_embedded)
if(CORE_PLATFORM_NAME STREQUAL ios)
set(LIBRETRO_SONAME bluemsx_libretro_ios${CMAKE_SHARED_LIBRARY_SUFFIX})
Expand All @@ -40,10 +64,22 @@ 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 . -f Makefile platform=${PLATFORM} ${LIBRETRO_DEBUG} GIT_VERSION=)
set(BUILD_COMMAND IOSSDK=${CMAKE_OSX_SYSROOT} $(MAKE)
-C .
-f Makefile
${LIBRETRO_DEBUG}
GIT_VERSION=
platform=${PLATFORM}
)
elseif(CORE_PLATFORM_NAME STREQUAL tvos)
set(LIBRETRO_SONAME bluemsx_libretro_tvos${CMAKE_SHARED_LIBRARY_SUFFIX})
set(BUILD_COMMAND IOSSDK=${CMAKE_OSX_SYSROOT} $(MAKE) -C . -f Makefile platform=tvos-arm64 ${LIBRETRO_DEBUG} GIT_VERSION=)
set(BUILD_COMMAND IOSSDK=${CMAKE_OSX_SYSROOT} $(MAKE)
-C .
-f Makefile
${LIBRETRO_DEBUG}
GIT_VERSION=
platform=tvos-arm64
)
endif()
elseif(CORE_SYSTEM_NAME STREQUAL android)
if(NOT NDKROOT)
Expand All @@ -56,13 +92,27 @@ 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 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 jni
${LIBRETRO_DEBUG}
APP_ABI=${PLATFORM}
APP_SHORT_COMMANDS=true
GIT_VERSION=
NDK_LIBS_OUT=${PROJECT_SOURCE_DIR}/${LIBRETRO_BINARY_DIR}
V=1
V7NEONOPTIMIZATION=1

&& 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 . -f Makefile platform=unix ${LIBRETRO_DEBUG} GIT_VERSION=)
set(BUILD_COMMAND $(MAKE)
-C .
-f Makefile
${LIBRETRO_DEBUG
GIT_VERSION=
platform=unix
)
else()
message(FATAL_ERROR "${PROJECT_NAME} - Unknown system: ${CORE_SYSTEM_NAME}")
endif()
Expand Down
2 changes: 1 addition & 1 deletion game.libretro.bluemsx/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.bluemsx"
name="MSX/SVI/ColecoVision/SG-1000 (blueMSX)"
version="0.0.1.41"
version="0.0.1.42"
provider-name="Daniel Vik">
<requires>
<import addon="game.libretro" version="1.0.0"/>
Expand Down

0 comments on commit aa1df7e

Please sign in to comment.