Skip to content

Commit 81e572b

Browse files
committed
Added dynamic library support
To be able to use SQLite in multiple libraries within the same app bundle, the product now supports dynamic linking
1 parent af28502 commit 81e572b

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

Package.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ let package = Package(
4848
.library(
4949
name: "SQLite",
5050
targets: ["SQLite"]
51+
),
52+
.library(
53+
name: "SQLite-Dynamic",
54+
type: .dynamic,
55+
targets: ["SQLite"]
5156
)
5257
],
5358
traits: [

0 commit comments

Comments
 (0)