Skip to content

Sfml submodule

Sfml submodule #29

Workflow file for this run

name: GCC
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-22.04
env:
CC: gcc
CXX: g++
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
sudo apt -y install g++ gcc \
libudev-dev \
libopenal-dev \
libvorbis-dev \
libflac-dev \
libx11-dev \
libxcursor-dev \
libxrandr-dev \
libfreetype-dev \
libopengl-dev \
libglx-dev \
libgl1-mesa-dev
- name: FetchSubmodules
run: |
git submodule init
git submodule update
- name: Build GCC
run: |
mkdir -p build
cd build
cmake ../
cmake --build . -j