diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2024-04-17 12:00:05 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2024-04-17 12:00:05 -0600 |
commit | 424fe090aa919d7ef70720d663bd280d09092bdf (patch) | |
tree | e8d54467b3f3cb77ed778d1fadbc826a2e6aab7a /Package.swift |
initial commit
Diffstat (limited to 'Package.swift')
-rw-r--r-- | Package.swift | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..d1695e8 --- /dev/null +++ b/Package.swift @@ -0,0 +1,23 @@ +// swift-tools-version: 5.9 +// The swift-tools-version declares the minimum version of Swift required to build this package. + +import PackageDescription + +let package = Package( + name: "swift-chess-neo", + products: [ + // Products define the executables and libraries a package produces, making them visible to other packages. + .library( + name: "SwiftChessNeo", + targets: ["SwiftChessNeo"]), + ], + targets: [ + // Targets are the basic building blocks of a package, defining a module or a test suite. + // Targets can depend on other targets in this package and products from dependencies. + .target( + name: "SwiftChessNeo"), + .testTarget( + name: "SwiftChessNeoTests", + dependencies: ["SwiftChessNeo"]), + ] +) |