Skip to content

* Add PathFinder and friends. #105

* Add PathFinder and friends.

* Add PathFinder and friends. #105

Workflow file for this run

name: 'Build'
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
submodules: true
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -y build-essential cmake ninja-build libopenal-dev libsdl2-dev
- name: Build Desktop
run: |
cd platforms/sdl
mkdir build
cd build
cmake -GNinja ..
cmake --build .
- name: Build WASM
run: ./build-wasm.sh