Skip to content

Commit

Permalink
Add glad requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
cjhoward committed Dec 1, 2023
1 parent bae9d63 commit 2554133
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,18 @@ jobs:
matrix:
include:
- os: windows-latest
preset: win64-release
# - os: ubuntu-latest
# preset: linux64-release
preset: win64
# - os: ubuntu
# preset: linux64

steps:
- uses: actions/checkout@v3

- name: CMake configure
run: cmake --preset ${{matrix.preset}}

run: cmake --preset ${{matrix.preset}}-release

- name: Install glad requirements
run: pip install -r build/${{matrix.preset}}/_deps/glad-src/requirements.txt

- name: CMake build
run: cmake --build --preset ${{matrix.preset}}
run: cmake --build --preset ${{matrix.preset}}-release
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ Head over to [antkeeper.com](https://antkeeper.com/) if you're interested in fol
Prerequisites:

* [Git](https://git-scm.com/downloads)
* [CMake](https://cmake.org/download/) 3.27+
* [CMake](https://cmake.org/download/)>=3.27
* [Build Tools](https://visualstudio.microsoft.com/downloads/) for Visual Studio 2022 or later
* [Python](https://www.python.org/downloads/) 3.11.0+
* [Python](https://www.python.org/downloads/)>=3.11.0
* [Jinja2](https://pypi.org/project/Jinja2/)>=2.7,<4.0

Configure and build a 64-bit Windows release:

Expand Down

0 comments on commit 2554133

Please sign in to comment.