Skip to content

Update readme and cmake due to windows support #16

Update readme and cmake due to windows support

Update readme and cmake due to windows support #16

Workflow file for this run

name: Clang
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-22.04
env:
CC: clang
CXX: clang++
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
sudo apt -y install clang libsfml-dev
- name: FetchSubmodules
run: |
git submodule init
git submodule update
- name: Build Clang
run: |
mkdir -p build
cd build
cmake ../
cmake --build . -j