Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ examples/**/usage_example_enabled
enterprise*/
build-*/
build_*/
/.build/
**/.build/
/build/
/out/
/bin/
Expand Down
22 changes: 22 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// swift-tools-version: 5.9
import PackageDescription

let package = Package(
name: "ThemisDBSwiftClientWorkspace",
platforms: [
.macOS(.v13),
.iOS(.v16)
],
products: [
.library(
name: "ThemisDB",
targets: ["ThemisDB"]
)
],
targets: [
.target(
name: "ThemisDB",
path: "clients/swift/Sources/ThemisDB"
)
]
)
22 changes: 22 additions & 0 deletions clients/swift/Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// swift-tools-version: 5.9
import PackageDescription

let package = Package(
name: "ThemisDB",
platforms: [
.macOS(.v13),
.iOS(.v16)
],
products: [
.library(
name: "ThemisDB",
targets: ["ThemisDB"]
)
],
targets: [
.target(
name: "ThemisDB",
path: "Sources/ThemisDB"
)
]
)
Loading