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 /src/CMakeLists.txt | |
| 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 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3dcd96bf..54bfc2c2 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -30,11 +30,11 @@ set(raylib_public_headers # Sources to be compiled set(raylib_sources - core.c - models.c - shapes.c - text.c - textures.c + rcore.c + rmodels.c + rshapes.c + rtext.c + rtextures.c utils.c ) |
