Initial Commit
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
// swift-tools-version:5.9
|
||||
|
||||
//
|
||||
// Package.swift
|
||||
// HRW
|
||||
//
|
||||
// Created by Isaac Paul on 10/15/24
|
||||
// Non-commercial license, see LICENSE.MD in the project root for details
|
||||
//
|
||||
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "HRW",
|
||||
products: [
|
||||
.library(
|
||||
name: "HRW",
|
||||
targets: ["HRW"]
|
||||
)
|
||||
],
|
||||
dependencies: [
|
||||
],
|
||||
targets: [
|
||||
.target(
|
||||
name: "HRW",
|
||||
dependencies: [
|
||||
]
|
||||
),
|
||||
.testTarget(
|
||||
name: "HRWTests",
|
||||
dependencies: ["HRW"]
|
||||
)
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user