Skip to content

Update CMakeLists.txt #182

Update CMakeLists.txt

Update CMakeLists.txt #182

Workflow file for this run

name: C/C++ CI
on: [push]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: install_dependencies
shell: bash
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu `lsb_release -sc` main universe restricted multiverse"
sudo apt-get update -y -qq
fi
- name: build
shell: bash
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update && sudo apt-get install xorg-dev libglu1-mesa-dev freeglut3-dev mesa-common-dev libsdl2-dev
fi
if [ "$RUNNER_OS" == "macOS" ]; then
brew install SDL2
brew install SDL2_image
fi
mkdir build
cd build
cmake ..
cmake --build . -j 8