mirror of
https://github.com/kichikuou/system3-sdl2.git
synced 2026-09-26 08:38:04 +03:00
This adds support for "real" FM sound that can be used instead of MIDI sound. (Currently only available on platforms where SDL_mixer is used.) The MakoFM class interprets AMUS.DAT to create a write sequence to the OPNA registers, from which fmgen generates an audio stream.
28 lines
611 B
YAML
28 lines
611 B
YAML
name: Linux Build
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
build-type: ["Debug", "Release"]
|
|
|
|
name: Linux ${{ matrix.build-type }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Install Deps
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install libsdl2-dev libsdl2-ttf-dev libsdl2-mixer-dev
|
|
|
|
- name: Build
|
|
run: |
|
|
mkdir -p out/${{ matrix.build-type }}
|
|
cd out/${{ matrix.build-type }}
|
|
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} ../../src/
|
|
make
|