summaryrefslogtreecommitdiffhomepage
path: root/projects/Geany
diff options
context:
space:
mode:
authorRay <[email protected]>2021-11-02 18:40:45 +0100
committerRay <[email protected]>2021-11-02 18:40:45 +0100
commit5e3db0aa83ac337ac53b9ebd1561472adfbabb41 (patch)
tree0ccd6eb5d9c94e13a45482f530a923e940b32ad9 /projects/Geany
parentfadef24b626fc5811d1d4015fed90fdba315f977 (diff)
downloadraylib-5e3db0aa83ac337ac53b9ebd1561472adfbabb41.tar.gz
raylib-5e3db0aa83ac337ac53b9ebd1561472adfbabb41.zip
Updated some scripts paths
NOTE: New raylib release installer uses `w64devkit`, smaller and more updated than regular `mingw64-w64` default project. Paths are updated properly.
Diffstat (limited to 'projects/Geany')
-rw-r--r--projects/Geany/raylib_compile_execute.bat3
-rw-r--r--projects/Geany/raylib_compile_sources.bat5
2 files changed, 5 insertions, 3 deletions
diff --git a/projects/Geany/raylib_compile_execute.bat b/projects/Geany/raylib_compile_execute.bat
index 09783383..b99740c4 100644
--- a/projects/Geany/raylib_compile_execute.bat
+++ b/projects/Geany/raylib_compile_execute.bat
@@ -2,7 +2,8 @@
:: > Setup required Environment
:: -------------------------------------
set RAYLIB_DIR=C:\raylib
-set PATH=%PATH%;%RAYLIB_DIR%\mingw\bin
+set COMPILER_DIR=C:\raylib\mingw\bin
+set PATH=%PATH%;%COMPILER_DIR%
set FILE_NAME=%1
set NAME_PART=%FILE_NAME:~0,-2%
cd %~dp0
diff --git a/projects/Geany/raylib_compile_sources.bat b/projects/Geany/raylib_compile_sources.bat
index a0fb17a2..9ee5f0e1 100644
--- a/projects/Geany/raylib_compile_sources.bat
+++ b/projects/Geany/raylib_compile_sources.bat
@@ -7,7 +7,8 @@ set GRAPHICS_API=GRAPHICS_API_OPENGL_33
:: > Setup required Environment
:: -------------------------------------
set RAYLIB_DIR=C:\raylib
-set PATH=%PATH%;%RAYLIB_DIR%\mingw\bin
+set COMPILER_DIR=C:\raylib\mingw\bin
+set PATH=%PATH%;%COMPILER_DIR%
cd %RAYLIB_DIR%\raylib\src
:: .
:: > Cleaning latest build
@@ -29,7 +30,7 @@ gcc -O2 -c utils.c -std=c99 -Wall -DPLATFORM_DESKTOP
:: .
:: . > Generate raylib library
:: ------------------------------
-ar rcs libraylib.a core.o rglfw.o shapes.o textures.o text.o models.o raudio.o utils.o
+ar rcs libraylib.a rcore.o rglfw.o rshapes.o rtextures.o rtext.o rmodels.o raudio.o utils.o
:: .
:: > Installing raylib library
:: -----------------------------