From 2611918b4bb12cc18ec7972eaf69807f48e37fe6 Mon Sep 17 00:00:00 2001 From: Stephen Booth Date: Fri, 21 Aug 2026 19:48:09 -0600 Subject: [PATCH] Add explicit module for `sqlite3ext.h` --- Sources/CSQLite/include/module.modulemap | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Sources/CSQLite/include/module.modulemap b/Sources/CSQLite/include/module.modulemap index d64a094..7d850f2 100644 --- a/Sources/CSQLite/include/module.modulemap +++ b/Sources/CSQLite/include/module.modulemap @@ -1,6 +1,12 @@ module CSQLite { - header "sqlite3.h" - header "sqlite3ext.h" - header "csqlite_shims.h" - export * + module csqlite { + header "sqlite3.h" + header "csqlite_shims.h" + } + + explicit module ext { + textual header "sqlite3ext.h" + } + + export csqlite }