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.
This commit is contained in:
parent
fadef24b62
commit
5e3db0aa83
9 changed files with 19 additions and 17 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
:: -----------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue