Add lookAt function to quaternion to make a rotation that looks at a … #326
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: C++ CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: prepare | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libsdl2-dev | |
- name: build_native | |
run: | | |
mkdir _build_native | |
cd _build_native | |
cmake ../template/ -DCMAKE_MODULE_PATH=../cmake/ | |
make |