Skip to content

Commit

Permalink
updated to add path back in
Browse files Browse the repository at this point in the history
  • Loading branch information
orff committed Feb 27, 2021
1 parent 5c55aa2 commit 2d2c576
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let ocs: Target = .target(name: "ClockStandard")
ocs.dependencies = []
ocs.path = "swift"

let package = Package(
name: "ClockStandard",
platforms: [
Expand All @@ -15,17 +22,7 @@ let package = Package(
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "ClockStandard",
dependencies: []),
path = "swift",
.testTarget(
name: "ClockStandardTests",
dependencies: ["ClockStandard"]),
]
targets: [ ocs ]
)


0 comments on commit 2d2c576

Please sign in to comment.