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/VS2019 | |
| 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/VS2019')
| -rw-r--r-- | projects/VS2019/raylib/raylib.vcxproj | 14 |
1 files changed, 7 insertions, 7 deletions
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" /> |
