diff options
Diffstat (limited to 'projects')
| -rw-r--r-- | projects/Geany/raylib_compile_sources.bat | 10 | ||||
| -rw-r--r-- | projects/Notepad++/npes_saved_mingw.txt | bin | 7390 -> 7400 bytes | |||
| -rw-r--r-- | projects/Notepad++/npes_saved_tcc.txt | bin | 7426 -> 7436 bytes | |||
| -rw-r--r-- | projects/VS2019/raylib/raylib.vcxproj | 14 | ||||
| -rw-r--r-- | projects/scripts/build-linux.sh | 2 | ||||
| -rw-r--r-- | projects/scripts/build-osx.sh | 2 | ||||
| -rwxr-xr-x | projects/scripts/build-rpi.sh | 2 | ||||
| -rw-r--r-- | projects/scripts/build-windows.bat | 2 |
8 files changed, 16 insertions, 16 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 diff --git a/projects/Notepad++/npes_saved_mingw.txt b/projects/Notepad++/npes_saved_mingw.txt Binary files differindex 6363218f..a6057862 100644 --- a/projects/Notepad++/npes_saved_mingw.txt +++ b/projects/Notepad++/npes_saved_mingw.txt diff --git a/projects/Notepad++/npes_saved_tcc.txt b/projects/Notepad++/npes_saved_tcc.txt Binary files differindex 97548bdb..9b74d371 100644 --- a/projects/Notepad++/npes_saved_tcc.txt +++ b/projects/Notepad++/npes_saved_tcc.txt diff --git a/projects/VS2019/raylib/raylib.vcxproj b/projects/VS2019/raylib/raylib.vcxproj index 7e3e99d6..51a3c4d8 100644 --- a/projects/VS2019/raylib/raylib.vcxproj +++ b/projects/VS2019/raylib/raylib.vcxproj @@ -303,16 +303,16 @@ </ItemDefinitionGroup> <ItemGroup> <ClCompile Include="..\..\..\src\raudio.c" /> - <ClCompile Include="..\..\..\src\core.c" /> - <ClCompile Include="..\..\..\src\models.c" /> + <ClCompile Include="..\..\..\src\rcore.c" /> + <ClCompile Include="..\..\..\src\rmodels.c" /> <ClCompile Include="..\..\..\src\rglfw.c" /> - <ClCompile Include="..\..\..\src\shapes.c" /> - <ClCompile Include="..\..\..\src\text.c" /> - <ClCompile Include="..\..\..\src\textures.c" /> + <ClCompile Include="..\..\..\src\rshapes.c" /> + <ClCompile Include="..\..\..\src\rtext.c" /> + <ClCompile Include="..\..\..\src\rtextures.c" /> <ClCompile Include="..\..\..\src\utils.c" /> </ItemGroup> <ItemGroup> - <ClInclude Include="..\..\..\src\camera.h" /> + <ClInclude Include="..\..\..\src\rcamera.h" /> <ClInclude Include="..\..\..\src\config.h" /> <ClInclude Include="..\..\..\src\external\glad.h" /> <ClInclude Include="..\..\..\src\external\jar_mod.h" /> @@ -324,7 +324,7 @@ <ClInclude Include="..\..\..\src\external\stb_rect_pack.h" /> <ClInclude Include="..\..\..\src\external\stb_truetype.h" /> <ClInclude Include="..\..\..\src\external\stb_vorbis.h" /> - <ClInclude Include="..\..\..\src\gestures.h" /> + <ClInclude Include="..\..\..\src\rgestures.h" /> <ClInclude Include="..\..\..\src\raylib.h" /> <ClInclude Include="..\..\..\src\raymath.h" /> <ClInclude Include="..\..\..\src\rlgl.h" /> diff --git a/projects/scripts/build-linux.sh b/projects/scripts/build-linux.sh index 5a004ddd..4f3871d0 100644 --- a/projects/scripts/build-linux.sh +++ b/projects/scripts/build-linux.sh @@ -120,7 +120,7 @@ if [ ! -d "$TEMP_DIR" ]; then mkdir -p $TEMP_DIR cd $TEMP_DIR RAYLIB_DEFINES="-D_DEFAULT_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33" - RAYLIB_C_FILES="$RAYLIB_SRC/core.c $RAYLIB_SRC/shapes.c $RAYLIB_SRC/textures.c $RAYLIB_SRC/text.c $RAYLIB_SRC/models.c $RAYLIB_SRC/utils.c $RAYLIB_SRC/raudio.c $RAYLIB_SRC/rglfw.c" + RAYLIB_C_FILES="$RAYLIB_SRC/rcore.c $RAYLIB_SRC/rshapes.c $RAYLIB_SRC/rtextures.c $RAYLIB_SRC/rtext.c $RAYLIB_SRC/rmodels.c $RAYLIB_SRC/utils.c $RAYLIB_SRC/raudio.c $RAYLIB_SRC/rglfw.c" RAYLIB_INCLUDE_FLAGS="-I$RAYLIB_SRC -I$RAYLIB_SRC/external/glfw/include" if [ -n "$REALLY_QUIET" ]; then diff --git a/projects/scripts/build-osx.sh b/projects/scripts/build-osx.sh index 13a421f9..e7bf5cf9 100644 --- a/projects/scripts/build-osx.sh +++ b/projects/scripts/build-osx.sh @@ -120,7 +120,7 @@ if [ ! -d "$TEMP_DIR" ]; then mkdir -p $TEMP_DIR cd $TEMP_DIR RAYLIB_DEFINES="-D_DEFAULT_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33" - RAYLIB_C_FILES="$RAYLIB_SRC/core.c $RAYLIB_SRC/shapes.c $RAYLIB_SRC/textures.c $RAYLIB_SRC/text.c $RAYLIB_SRC/models.c $RAYLIB_SRC/utils.c $RAYLIB_SRC/raudio.c" + RAYLIB_C_FILES="$RAYLIB_SRC/rcore.c $RAYLIB_SRC/rshapes.c $RAYLIB_SRC/rtextures.c $RAYLIB_SRC/rtext.c $RAYLIB_SRC/rmodels.c $RAYLIB_SRC/utils.c $RAYLIB_SRC/raudio.c" RAYLIB_INCLUDE_FLAGS="-I$RAYLIB_SRC -I$RAYLIB_SRC/external/glfw/include" if [ -n "$REALLY_QUIET" ]; then diff --git a/projects/scripts/build-rpi.sh b/projects/scripts/build-rpi.sh index 85b39b04..7b4237f2 100755 --- a/projects/scripts/build-rpi.sh +++ b/projects/scripts/build-rpi.sh @@ -120,7 +120,7 @@ if [ ! -d "$TEMP_DIR" ]; then mkdir -p $TEMP_DIR cd $TEMP_DIR RAYLIB_DEFINES="-D_DEFAULT_SOURCE -DPLATFORM_RPI -DGRAPHICS_API_OPENGL_ES2" - RAYLIB_C_FILES="$RAYLIB_SRC/core.c $RAYLIB_SRC/shapes.c $RAYLIB_SRC/textures.c $RAYLIB_SRC/text.c $RAYLIB_SRC/models.c $RAYLIB_SRC/utils.c $RAYLIB_SRC/raudio.c" + RAYLIB_C_FILES="$RAYLIB_SRC/rcore.c $RAYLIB_SRC/rshapes.c $RAYLIB_SRC/rtextures.c $RAYLIB_SRC/rtext.c $RAYLIB_SRC/rmodels.c $RAYLIB_SRC/utils.c $RAYLIB_SRC/raudio.c" RAYLIB_INCLUDE_FLAGS="-I$RAYLIB_SRC -I/opt/vc/include" if [ -n "$REALLY_QUIET" ]; then diff --git a/projects/scripts/build-windows.bat b/projects/scripts/build-windows.bat index 276572c2..37319491 100644 --- a/projects/scripts/build-windows.bat +++ b/projects/scripts/build-windows.bat @@ -167,7 +167,7 @@ IF NOT EXIST !TEMP_DIR!\ ( cd !TEMP_DIR! REM Raylib's src folder set "RAYLIB_DEFINES=/D_DEFAULT_SOURCE /DPLATFORM_DESKTOP /DGRAPHICS_API_OPENGL_33" - set RAYLIB_C_FILES="!RAYLIB_SRC!\core.c" "!RAYLIB_SRC!\shapes.c" "!RAYLIB_SRC!\textures.c" "!RAYLIB_SRC!\text.c" "!RAYLIB_SRC!\models.c" "!RAYLIB_SRC!\utils.c" "!RAYLIB_SRC!\raudio.c" "!RAYLIB_SRC!\rglfw.c" + set RAYLIB_C_FILES="!RAYLIB_SRC!\rcore.c" "!RAYLIB_SRC!\rshapes.c" "!RAYLIB_SRC!\rtextures.c" "!RAYLIB_SRC!\rtext.c" "!RAYLIB_SRC!\rmodels.c" "!RAYLIB_SRC!\utils.c" "!RAYLIB_SRC!\raudio.c" "!RAYLIB_SRC!\rglfw.c" set RAYLIB_INCLUDE_FLAGS=/I"!RAYLIB_SRC!" /I"!RAYLIB_SRC!\external\glfw\include" IF DEFINED REALLY_QUIET ( |
