Skip to content

Commit

Permalink
Merge commit 'b4399c59cc4c4f0933281e9f964841b90fb737bb'
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeUsher committed Feb 25, 2024
2 parents 33a00d4 + b4399c5 commit 3714546
Show file tree
Hide file tree
Showing 267 changed files with 7,056 additions and 4,403 deletions.
2 changes: 1 addition & 1 deletion thirdparty/libchdr/.github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
os: [macos-latest, ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
Expand Down
17 changes: 17 additions & 0 deletions thirdparty/libchdr/.github/workflows/switch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Nintendo Switch

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
container: devkitpro/devkita64:latest

steps:
- uses: actions/checkout@v4

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=${DEVKITPRO}/cmake/Switch.cmake

- name: Build
run: cmake --build ${{github.workspace}}/build --config Release
17 changes: 17 additions & 0 deletions thirdparty/libchdr/.github/workflows/vita.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: PlayStation Vita

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
container: vitasdk/vitasdk:latest

steps:
- uses: actions/checkout@v4

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=${VITASDK}/share/vita.toolchain.cmake

- name: Build
run: cmake --build ${{github.workspace}}/build --config Release
4 changes: 2 additions & 2 deletions thirdparty/libchdr/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ if (WITH_SYSTEM_ZLIB)
find_package(ZLIB REQUIRED)
list(APPEND PLATFORM_LIBS ZLIB::ZLIB)
else()
add_subdirectory(deps/zlib-1.2.13 EXCLUDE_FROM_ALL)
option(ZLIB_BUILD_EXAMPLES "Enable Zlib Examples" OFF)
add_subdirectory(deps/zlib-1.3.1 EXCLUDE_FROM_ALL)
set_target_properties(zlibstatic PROPERTIES POSITION_INDEPENDENT_CODE ON)
list(APPEND CHDR_LIBS zlibstatic)
list(APPEND CHDR_INCLUDES "${CMAKE_CURRENT_SOURCE_DIR}/deps/zlib-1.2.13" "${CMAKE_CURRENT_BINARY_DIR}/deps/zlib-1.2.13")
endif()

# zstd
Expand Down

This file was deleted.

Loading

0 comments on commit 3714546

Please sign in to comment.