Started off well

This commit is contained in:
cdricms
2026-03-21 17:25:07 +01:00
commit ada1c12f57
9 changed files with 1164 additions and 0 deletions

28
Package.swift Normal file
View File

@@ -0,0 +1,28 @@
// swift-tools-version: 6.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "MusicBrainz",
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "MusicBrainz",
targets: ["MusicBrainz"]
),
.executable(name: "MusicBrainzExe", targets: ["MusicBrainzExe"]),
],
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: "MusicBrainz"
),
.executableTarget(name: "MusicBrainzExe", dependencies: ["MusicBrainz"]),
.testTarget(
name: "MusicBrainzTests",
dependencies: ["MusicBrainz"]
),
]
)