-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Swift Package Description and move test files to Tests directory
Moved 'NanoTDFTests.swift' and 'WebSocketManager.swift' from 'NanoTDFTests' directory to 'Tests' directory. Also added 'Package.swift' to provide a package description for Swift Package Manager.
- Loading branch information
1 parent
08f5f9b
commit 12c5d7b
Showing
4 changed files
with
57 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// swift-tools-version:5.1 | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "NanoTDF", | ||
platforms: [ | ||
.macOS(.v10_15) | ||
], | ||
products: [ | ||
.library( | ||
name: "NanoTDF", | ||
targets: ["NanoTDF"]), | ||
], | ||
dependencies: [ | ||
// Dependencies | ||
], | ||
targets: [ | ||
.target( | ||
name: "NanoTDF", | ||
dependencies: [], | ||
path: "NanoTDF"), | ||
.testTarget( | ||
name: "Tests", | ||
dependencies: ["NanoTDF"], | ||
path: "Tests") | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// | ||
// NanoTDFTests.swift | ||
// NanoTDFTests | ||
// Tests | ||
// | ||
// Created by Paul Flynn on 4/29/24. | ||
// | ||
|
2 changes: 1 addition & 1 deletion
2
NanoTDFTests/WebSocketManager.swift → Tests/WebSocketManager.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// | ||
// WebSocketManager.swift | ||
// NanoTDFTests | ||
// Tests | ||
// | ||
// Created by Paul Flynn on 5/10/24. | ||
// | ||
|