From 49f1239f147815e16ba578c483636dff782fe5da Mon Sep 17 00:00:00 2001 From: Carl Sauter Date: Tue, 10 Feb 2026 11:54:43 +0100 Subject: [PATCH] fix: compile-time options docs --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7501266..2d8924f 100644 --- a/README.md +++ b/README.md @@ -233,7 +233,7 @@ installer.pods_project.targets.each do |target| if target.name == "RNNitroSQLite" target.build_configurations.each do |config| config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)'] - config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'SQLITE_ENABLE_FTS5=1' + config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'SQLITE_ENABLE_FTS5=1 SQLITE_ENABLE_MATH_FUNCTIONS=1' end end end @@ -242,7 +242,7 @@ end **Android** — in `android/gradle.properties`: ```properties -nitroSqliteFlags="-DSQLITE_ENABLE_FTS5=1" +nitroSqliteFlags=-DSQLITE_ENABLE_FTS5=1;-DSQLITE_ENABLE_MATH_FUNCTIONS=1 ``` ## App groups (iOS)