diff options
| author | Ray <[email protected]> | 2021-09-22 00:15:06 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2021-09-22 00:15:06 +0200 |
| commit | 99ab4d6cb8efe1dc8f6bfb2307da218ee485e6c3 (patch) | |
| tree | 49af73f2dc08a5b40d4a03a29962a7ddb4c9a79c /projects/Geany/raylib_compile_sources.bat | |
| parent | 8b3d054408c9d22e65870c67ae856005c24ed389 (diff) | |
| download | raylib-99ab4d6cb8efe1dc8f6bfb2307da218ee485e6c3.tar.gz raylib-99ab4d6cb8efe1dc8f6bfb2307da218ee485e6c3.zip | |
WARNING: MODULES RENAMING!!!
raylib modules have been slightly renamed to add some identity and note that they are independent modules that can be used as standalone separate parts of raylib if required.
The renamed modules are:
- `core` -> `rcore`
- `shapes` -> `rshapes`
- `textures` -> `rtextures`
- `text` -> `rtext`
- `models` -> `rmodels`
- `camera` -> `rcamera`
- `gestures` -> `rgestures`
- `core` -> `rcore`
All the build systems has been adapted to this change.
Diffstat (limited to 'projects/Geany/raylib_compile_sources.bat')
| -rw-r--r-- | projects/Geany/raylib_compile_sources.bat | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/projects/Geany/raylib_compile_sources.bat b/projects/Geany/raylib_compile_sources.bat index c17ffba9..a0fb17a2 100644 --- a/projects/Geany/raylib_compile_sources.bat +++ b/projects/Geany/raylib_compile_sources.bat @@ -18,11 +18,11 @@ cmd /c del /F libraylib.a :: > Compile raylib modules :: ------------------------------ gcc -O2 -c rglfw.c -Wall -I. -Iexternal/glfw/include -gcc -O2 -c core.c -std=c99 -Wall -Iexternal/glfw/include -DPLATFORM_DESKTOP -D%GRAPHICS_API% -gcc -O2 -c shapes.c -std=c99 -Wall -DPLATFORM_DESKTOP -gcc -O2 -c textures.c -std=c99 -Wall -DPLATFORM_DESKTOP -gcc -O2 -c text.c -std=c99 -Wall -DPLATFORM_DESKTOP -gcc -O2 -c models.c -std=c99 -Wall -DPLATFORM_DESKTOP +gcc -O2 -c rcore.c -std=c99 -Wall -Iexternal/glfw/include -DPLATFORM_DESKTOP -D%GRAPHICS_API% +gcc -O2 -c rshapes.c -std=c99 -Wall -DPLATFORM_DESKTOP +gcc -O2 -c rtextures.c -std=c99 -Wall -DPLATFORM_DESKTOP +gcc -O2 -c rtext.c -std=c99 -Wall -DPLATFORM_DESKTOP +gcc -O2 -c rmodels.c -std=c99 -Wall -DPLATFORM_DESKTOP gcc -O2 -c raudio.c -std=c99 -Wall -DPLATFORM_DESKTOP gcc -O2 -c utils.c -std=c99 -Wall -DPLATFORM_DESKTOP |
