diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 91662fb..9af1eff 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 diff --git a/README.md b/README.md index 2ff9f4a..d7f008c 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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. \ No newline at end of file +If this is not desired, use the same strategies as functions.