Skip to content

Commit

Permalink
Added GLFW entry .github/workflows/main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vssukharev committed Oct 7, 2024
1 parent 009eb1c commit 5697cf3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,13 @@ jobs:
asset_path: packages/curl.c3l
asset_name: curl.c3l
asset_content_type: application/zip

- name: upload glfw
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: packages/glfw.c3l
asset_name: glfw.c3l
asset_content_type: application/zip
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ This repository contains external libraries for use with C3.
- SDL2 2.28.x https://libsdl.org/ - WIP
- Tigr https://github.com/erkkah/tigr (Needs Windows & macOS static libraries)
- Curl https://curl.se/docs/manpage.html
- OpenGL
- OpenGL
- Vulkan
- GLFW https://www.glfw.org/ - WIP

## Guide for writing bindings

Expand Down Expand Up @@ -249,4 +251,4 @@ ui::newButton(button::ANY);
Global and constant names can usually be just converted to conform in a minimal manner (e.g
lower case the first character or convert all to upper case).
If this is not desired, use the same strategies as functions.
If this is not desired, use the same strategies as functions.

0 comments on commit 5697cf3

Please sign in to comment.