You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-5Lines changed: 18 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,14 +32,27 @@ CloseWindow()
32
32
33
33
34
34
35
-
## important
36
-
these are just bindings, so you must have raylib already on your computer
35
+
## compiling
36
+
you need to have raylib on your device, tested with shared lib but static lib should also work
37
37
38
-
the bindings were tested with raylib and raygui compiled separately as shared libraries
38
+
### raylib
39
39
40
-
for more info about building raylib visit [official wiki](https://github.com/raysan5/raylib/wiki)
41
-
and for raygui check [official repo](https://github.com/raysan5/raygui#building)
40
+
#### linux
41
+
include **raylib.bi** in your project and it should work, all of dependencies are defined inside the file
42
+
43
+
#### windows
44
+
include **raylib.bi** in your project and it should work, all of dependencies are defined inside the file
45
+
i primarily use linux so tests were mostly made using mingw and wine without encountering any issues
46
+
some users had problems with linking, changing ``` #include "raylib" ``` to ``` #include "raylibdll" ``` helped
42
47
48
+
### raygui
49
+
you have to either compile raygui with raylib or as a separate lib
43
50
51
+
for more info i advice looking in this [thread][https://github.com/WIITD/raylib-freebasic/issues/7] and [official raygui repo][https://github.com/raysan5/raygui]
52
+
53
+
for more info about building raylib visit [official wiki](https://github.com/raysan5/raylib/wiki)
54
+
and for raygui check [official repo](https://github.com/raysan5/raygui#building)
0 commit comments