From df6a95aacce7930eba1b311a57b02a920ce90f23 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Fri, 13 Jun 2025 11:37:24 -0700 Subject: [PATCH] CSQLite: add `module.modulemap` Add a modulemap for this module to allow SPM to build only the tests against the CMake generated products which are distributed as part of the toolchain image. --- Sources/CSQLite/include/module.modulemap | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Sources/CSQLite/include/module.modulemap diff --git a/Sources/CSQLite/include/module.modulemap b/Sources/CSQLite/include/module.modulemap new file mode 100644 index 0000000..3d96421 --- /dev/null +++ b/Sources/CSQLite/include/module.modulemap @@ -0,0 +1,5 @@ + +module SwiftToolchainCSQLite { + header "sqlite3.h" + header "sqlite3ext.h" +}