Skip to content

Commit

Permalink
Add raylib 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lerno committed Aug 29, 2024
1 parent 059a09c commit 6339151
Show file tree
Hide file tree
Showing 9 changed files with 2,112 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,16 @@ jobs:
asset_name: raylib.c3l
asset_content_type: application/zip

- name: upload raylib5
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: packages/raylib5.c3l
asset_name: raylib5.c3l
asset_content_type: application/zip

- name: upload sdl2
uses: actions/upload-release-asset@v1
env:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ This repository contains external libraries for use with C3.

### List of libraries

- Raylib 4.5.0 https://www.raylib.com
- Raylib 5.0 https://www.raylib.com
- 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
Expand Down
Binary file added libraries/raylib5.c3l/linux-x64/libraylib.a
Binary file not shown.
Binary file added libraries/raylib5.c3l/macos-aarch64/libraylib.a
Binary file not shown.
Binary file added libraries/raylib5.c3l/macos-x64/libraylib.a
Binary file not shown.
27 changes: 27 additions & 0 deletions libraries/raylib5.c3l/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"provides" : "raylib5",
"targets" : {
"macos-x64" : {
"linkflags" : [],
"dependencies" : [],
"linked-libs" : ["raylib", "Cocoa.framework", "OpenGL.framework", "CoreVideo.framework", "GLUT.framework", "IOKit.framework", "c"]
},
"macos-aarch64" : {
"linkflags" : [],
"dependencies" : [],
"linked-libs" : ["raylib", "Cocoa.framework", "OpenGL.framework", "CoreVideo.framework", "GLUT.framework", "IOKit.framework", "c"]
},
"linux-x64" : {
"linkflags" : [],
"dependencies" : [],
"linked-libs" : ["raylib", "GLESv2", "glfw3", "c"]
},
"windows-x64" : {
"linked-libs" : ["raylib", "opengl32", "kernel32", "user32", "gdi32", "winmm", "winspool", "comdlg32", "advapi32", "shell32", "ole32", "oleaut32", "uuid", "odbc32", "odbccp32"],
"wincrt": "none"
},
"wasm32" : {
"linked-libs" : ["raylib"]
}
}
}
Loading

0 comments on commit 6339151

Please sign in to comment.