Skip to content

Commit 0db23c9

Browse files
wadetregaskisjberkel
authored andcommitted
Broke the ObjC pieces out into a separate module, so that they can actually be built and used correctly.
1 parent 4e6b1e0 commit 0db23c9

File tree

5 files changed

+8
-0
lines changed

5 files changed

+8
-0
lines changed

Package.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ let package = Package(
55
targets: [
66
Target(
77
name: "SQLite",
8+
dependencies: [
9+
.Target(name: "SQLiteObjc")
10+
]),
11+
Target(
12+
name: "SQLiteObjc",
813
dependencies: [
914
.Target(name: "CSQLite")
1015
]),

Sources/SQLite/Extensions/FTS4.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
// THE SOFTWARE.
2323
//
2424

25+
import SQLiteObjc
26+
27+
2528
extension Module {
2629

2730
public static func FTS4(_ column: Expressible, _ more: Expressible...) -> Module {
File renamed without changes.

0 commit comments

Comments
 (0)