We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 738d676 commit 03f8c22Copy full SHA for 03f8c22
libsql-ffi/build.rs
@@ -268,6 +268,11 @@ pub fn build_bundled(out_dir: &str, out_path: &Path) {
268
sqlean_sources.extend(glob(&full_pattern).unwrap().filter_map(Result::ok));
269
}
270
271
+ if cfg!(feature = "sqlean-extension-regexp") {
272
+ cfg.flag("-include")
273
+ .flag(format!("{BUNDLED_DIR}/sqlean/regexp/constants.h"));
274
+ }
275
+
276
cfg.files(sqlean_sources);
277
278
let sqlean = Path::new(&env::var("OUT_DIR").unwrap()).join("sqlite3-sqlean-generated.c");
0 commit comments