Skip to content

Revert "Merge libretro stuff, bump to 0.3 version" #45

Revert "Merge libretro stuff, bump to 0.3 version"

Revert "Merge libretro stuff, bump to 0.3 version" #45

Workflow file for this run

name: CMake
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build ${{github.workspace}}/build --config Release