From 0b539707f35f20522c2d22709795c7b046e1c3f7 Mon Sep 17 00:00:00 2001 From: Oussama Teyib Date: Thu, 11 Sep 2025 07:21:30 +0000 Subject: [PATCH] Use the recommended `MinSizeRel` instead of `Release` for CMake --- Working-for-Android.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Working-for-Android.md b/Working-for-Android.md index f7ea403..1a9c77b 100644 --- a/Working-for-Android.md +++ b/Working-for-Android.md @@ -60,9 +60,9 @@ You can build raylib using either **CMake** or **Make**. Follow the steps below - Build raylib as a static library: ``` cmake -B Build \ - -G \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_TOOLCHAIN_FILE=/build/cmake/android.toolchain.cmake \ + -G "" \ + -DCMAKE_BUILD_TYPE=MinSizeRel \ + -DCMAKE_TOOLCHAIN_FILE=\build\cmake\android.toolchain.cmake \ -DPLATFORM=Android \ -DANDROID_ABI= \ -DANDROID_PLATFORM= \ @@ -81,7 +81,7 @@ You can build raylib using either **CMake** or **Make**. Follow the steps below - Navigate to the source folder: ``` - cd raylib/src + cd raylib\src ``` - Build the library: ```