Feature/keyboard handling #171
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build MacOS | |
on: | |
push: | |
branches: [ "master", "develop" ] | |
pull_request: | |
branches: [ "master", "develop" ] | |
workflow_call: | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Third Party | |
run: | | |
brew install openal-soft | |
brew reinstall freetype | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Build & install | |
run: | | |
echo 'Generating makefile' | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_BUILD_TYPE=Release | |
cmake --build . --config Release | |
cmake --install . | |
ls -l | |