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 3a35dea commit 01c0604Copy full SHA for 01c0604
.gitignore
@@ -9,3 +9,4 @@ target/
9
*.tar.gz
10
*.tar.xz
11
*.zip
12
+.build
Package.swift
@@ -0,0 +1,26 @@
1
+// swift-tools-version: 5.7
2
+
3
+// NOTE! This is never released, we're only using this to support local builds builds for the
4
+// Swift SDK.
5
+import PackageDescription
6
+let packageName = "PowerSyncSQLiteCore"
7
8
+let package = Package(
+ name: packageName,
+ platforms: [
+ .iOS(.v13),
+ .macOS(.v10_15),
13
+ .watchOS(.v9)
14
+ ],
15
+ products: [
16
+ .library(
17
18
+ targets: [packageName]),
19
20
+ targets: [
21
+ .binaryTarget(
22
23
+ path: "powersync-sqlite-core.xcframework"
24
+ )
25
+ ]
26
+)
0 commit comments