Skip to content

Instantly share code, notes, and snippets.

@jayrhynas
Created July 11, 2023 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jayrhynas/4b047c3c8ab6a434af0b38e96e5279c3 to your computer and use it in GitHub Desktop.
Save jayrhynas/4b047c3c8ab6a434af0b38e96e5279c3 to your computer and use it in GitHub Desktop.
// 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