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 9f91b2c commit 42fed09Copy full SHA for 42fed09
Package.swift
@@ -121,6 +121,12 @@ for index in package.targets.indices {
121
providers: [.apt(["libsqlite3-dev"])]
122
)
123
124
+
125
+ for index in package.targets.indices {
126
+ if package.targets[index].name == "StructuredQueriesSQLite" {
127
+ package.targets[index].dependencies.append("SQLite3")
128
+ }
129
130
#endif
131
132
#if !os(Windows)
Sources/SQLite3/SQLite3.h
@@ -0,0 +1,4 @@
1
+#ifndef SQLite3
2
+#define SQLite3
3
+#include <sqlite3.h>
4
+#endif
Sources/SQLite3/module.modulemap
+module SQLite3 [system] {
+ header "SQLite3.h"
+ export *
+}
0 commit comments