45 lines
921 B
Swift
45 lines
921 B
Swift
// swift-tools-version:6.1.0
|
|
|
|
//
|
|
// 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: [
|
|
.package(path: "/Users/isaacpaul/Projects/swift-projects/GenHTML5")
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "HRW",
|
|
dependencies: [ ]
|
|
),
|
|
.testTarget(
|
|
name: "HRWTests",
|
|
dependencies: [
|
|
"HRW"],
|
|
sources: ["example.html"],
|
|
plugins: [.plugin(name: "BindingPlugin", package: "genhtml5")]
|
|
)
|
|
]
|
|
)
|
|
/*
|
|
|
|
Showing All Messages
|
|
product 'BindingGenerator' required by package 'hrw' target 'HRWTests' not found. Did you mean ''?
|
|
|
|
|
|
*/
|