Skip to content

Commit d3f23a5

Browse files
committed
Add a _v7 for raylib for 0.7
1 parent 8af3a7f commit d3f23a5

File tree

8 files changed

+2656
-0
lines changed

8 files changed

+2656
-0
lines changed

.github/workflows/main.yml

+10
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,16 @@ jobs:
9999
asset_name: raylib55.c3l
100100
asset_content_type: application/zip
101101

102+
- name: upload raylib5.5 v7
103+
uses: actions/upload-release-asset@v1
104+
env:
105+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
106+
with:
107+
upload_url: ${{ steps.create_release.outputs.upload_url }}
108+
asset_path: packages/raylib55_v7.c3l
109+
asset_name: raylib55_v7.c3l
110+
asset_content_type: application/zip
111+
102112
- name: upload sdl2
103113
uses: actions/upload-release-asset@v1
104114
env:
2.67 MB
Binary file not shown.
Binary file not shown.
4.76 MB
Binary file not shown.
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"provides" : "raylib55_v7",
3+
"targets" : {
4+
"macos-x64" : {
5+
"link-args" : [],
6+
"dependencies" : [],
7+
"linked-libraries" : ["raylib", "Cocoa.framework", "OpenGL.framework", "CoreVideo.framework", "GLUT.framework", "IOKit.framework"]
8+
},
9+
"macos-aarch64" : {
10+
"link-args" : [],
11+
"dependencies" : [],
12+
"linked-libraries" : ["raylib", "Cocoa.framework", "OpenGL.framework", "CoreVideo.framework", "GLUT.framework", "IOKit.framework"]
13+
},
14+
"linux-x64" : {
15+
"link-args" : [],
16+
"dependencies" : [],
17+
"linked-libraries" : ["raylib"]
18+
},
19+
"windows-x64" : {
20+
"linked-libraries" : ["raylib", "gdi32", "winmm"],
21+
"wincrt": "none"
22+
},
23+
"wasm32" : {
24+
"linked-libraries" : ["raylib"]
25+
}
26+
}
27+
}

0 commit comments

Comments
 (0)