-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
32 lines (32 loc) · 1017 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"provides" : "raylib",
"sources": [
"./src/gl/**",
"./src/gui/**",
"./src/math/**",
"./src/rl/**",
],
"c-sources": [ "./c-src/raygui.c" ],
"c-include-dirs": [ "./c-src" ],
"targets" : {
"macos-x64" : {
"dependencies" : [],
"linked-libraries" : ["raylib", "Cocoa.framework", "OpenGL.framework", "CoreVideo.framework", "GLUT.framework", "IOKit.framework", "c"]
},
"macos-aarch64" : {
"dependencies" : [],
"linked-libraries" : ["raylib", "Cocoa.framework", "OpenGL.framework", "CoreVideo.framework", "GLUT.framework", "IOKit.framework", "c"]
},
"linux-x64" : {
"dependencies" : [],
"linked-libraries" : ["raylib", "c"]
},
"windows-x64" : {
"linked-libraries" : ["raylib", "opengl32", "kernel32", "user32", "gdi32", "winmm", "winspool", "comdlg32", "advapi32", "shell32", "ole32", "oleaut32", "uuid", "odbc32", "odbccp32"],
"wincrt": "none"
},
"wasm32" : {
"linked-libraries" : ["raylib"]
}
}
}