diff --git a/CMakeLists.txt b/CMakeLists.txt index ae5bf6c9..e04eae25 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_TRACY "Enable tracy 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 97446e1d..ea8050e8 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ 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 | diff --git a/build.gradle b/build.gradle index 4b1148d4..8780ca18 100644 --- a/build.gradle +++ b/build.gradle @@ -11,7 +11,7 @@ android { // externalNativeBuild { // cmake { -// arguments "-DTRACY_ENABLE=ON" +// arguments "-DMOBILEGL_ENABLE_TRACY=ON" // } // } }