Created
July 11, 2023 20:41
-
-
Save jayrhynas/4b047c3c8ab6a434af0b38e96e5279c3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// swift-tools-version: 5.8 | |
// The swift-tools-version declares the minimum version of Swift required to build this package. | |
import PackageDescription | |
let package = Package( | |
name: "DictionaryCoded", | |
products: [ | |
// Products define the executables and libraries a package produces, making them visible to other packages. | |
.library( | |
name: "DictionaryCoded", | |
targets: ["DictionaryCoded"]), | |
], | |
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: "DictionaryCoded"), | |
.testTarget( | |
name: "DictionaryCodedTests", | |
dependencies: ["DictionaryCoded"]), | |
] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment