From a09d6fa8ffcc751db12e8bd9a18c433d45b62cb5 Mon Sep 17 00:00:00 2001 From: Swung0x48 Date: Sat, 31 Jan 2026 12:50:21 +0800 Subject: [PATCH] [Fix]: fix typo --- CMakeLists.txt | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dffb06c1..ab6013f9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ project("MobileGL") option(MOBILEGL_BUILD_TEST "Build MobileGL tests" ON ) option(MOBILEGL_BUILD_BENCHMARK "Build MobileGL benchmarks" ON ) option(MOBILEGL_FORCE_RELEASE_OPT "Enable Release optimization flags in Debug build" ON ) -option(MOBILEGL_ENABLE_TRANCY "Enable trancy for profiling" OFF) +option(MOBILEGL_ENABLE_TRACY "Enable tracy for profiling" OFF) if (ANDROID) set(MOBILEGL_BUILD_TEST OFF CACHE BOOL "Build MobileGL tests" FORCE) diff --git a/README.md b/README.md index fdd0c25f..ea8050e8 100644 --- a/README.md +++ b/README.md @@ -88,11 +88,11 @@ If you want to try the project right now, you’ll need to build it yourself: ## Build Options | Option | Description | Default | -| ---------------------------- | ----------------------------------------------------- | ------- | +|------------------------------| ----------------------------------------------------- | ------- | | `MOBILEGL_BUILD_TEST` | Build MobileGL tests (requires Clang) | ON | | `MOBILEGL_BUILD_BENCHMARK` | Build MobileGL benchmarks (requires Clang) | ON | | `MOBILEGL_FORCE_RELEASE_OPT` | Enable O3 and LTO in Debug build | ON | -| `MOBILEGL_ENABLE_TRANCY` | Enable Tracy profiler for performance analysis | OFF | +| `MOBILEGL_ENABLE_TRACY` | Enable Tracy profiler for performance analysis | OFF | **Notes:**