-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
9 changed files
with
1,153 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
> [!NOTE] | ||
> raygui.c3l requires the `raylib5.c3l` library to function |
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.
Binary file not shown.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"provides" : "raygui", | ||
"targets" : { | ||
"macos-x64" : { | ||
"link-args" : [], | ||
"dependencies" : [], | ||
"linked-libraries" : ["raygui", "Cocoa.framework", "OpenGL.framework", "CoreVideo.framework", "GLUT.framework", "IOKit.framework", "c"] | ||
}, | ||
"macos-aarch64" : { | ||
"link-args" : [], | ||
"dependencies" : [], | ||
"linked-libraries" : ["raygui", "Cocoa.framework", "OpenGL.framework", "CoreVideo.framework", "GLUT.framework", "IOKit.framework", "c"] | ||
}, | ||
"linux-x64" : { | ||
"link-args" : [], | ||
"dependencies" : [], | ||
"linked-libraries" : ["raygui", "GLESv2", "glfw", "c"] | ||
}, | ||
"windows-x64" : { | ||
"linked-libraries" : ["raygui", "opengl32", "kernel32", "user32", "gdi32", "winmm", "winspool", "comdlg32", "advapi32", "shell32", "ole32", "oleaut32", "uuid", "odbc32", "odbccp32"], | ||
"wincrt": "none" | ||
}, | ||
"wasm32" : { | ||
"linked-libraries" : ["raygui"] | ||
} | ||
} | ||
} |
Oops, something went wrong.