fix crash on later glm versions #158
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: Windows | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install libs | |
run: .\windows\GET_LIBS.bat | |
- name: Configure CMake | |
run: mkdir build && cd build && cmake .. | |
- name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
- name: Build | |
run: msbuild build/goop.sln |