Skip to content

Commit 50e20de

Browse files
committed
Merge branch 'main' into create-target-for-common-code
2 parents 72254fa + d616aa5 commit 50e20de

File tree

238 files changed

+192
-192
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

238 files changed

+192
-192
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions

Package.swift

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ let package = Package(
5757
dependencies: [
5858
.target(name: "SwiftDocC"),
5959
.target(name: "Common"),
60-
.target(name: "SwiftDocCTestUtilities"),
60+
.target(name: "TestUtilities"),
6161
],
6262
resources: [
6363
.copy("Test Resources"),
@@ -69,7 +69,7 @@ let package = Package(
6969
),
7070
// Command-line tool library
7171
.target(
72-
name: "SwiftDocCUtilities",
72+
name: "CommandLine",
7373
dependencies: [
7474
.target(name: "SwiftDocC"),
7575
.target(name: "Common"),
@@ -80,12 +80,12 @@ let package = Package(
8080
swiftSettings: swiftSettings
8181
),
8282
.testTarget(
83-
name: "SwiftDocCUtilitiesTests",
83+
name: "CommandLineTests",
8484
dependencies: [
85-
.target(name: "SwiftDocCUtilities"),
85+
.target(name: "CommandLine"),
8686
.target(name: "SwiftDocC"),
8787
.target(name: "Common"),
88-
.target(name: "SwiftDocCTestUtilities"),
88+
.target(name: "TestUtilities"),
8989
],
9090
resources: [
9191
.copy("Test Resources"),
@@ -96,7 +96,7 @@ let package = Package(
9696

9797
// Test utility library
9898
.target(
99-
name: "SwiftDocCTestUtilities",
99+
name: "TestUtilities",
100100
dependencies: [
101101
.target(name: "SwiftDocC"),
102102
.target(name: "Common"),
@@ -109,7 +109,7 @@ let package = Package(
109109
.executableTarget(
110110
name: "docc",
111111
dependencies: [
112-
.target(name: "SwiftDocCUtilities"),
112+
.target(name: "CommandLine"),
113113
],
114114
exclude: ["CMakeLists.txt"],
115115
swiftSettings: swiftSettings
@@ -129,16 +129,16 @@ let package = Package(
129129
name: "CommonTests",
130130
dependencies: [
131131
.target(name: "Common"),
132-
.target(name: "SwiftDocCTestUtilities"),
132+
.target(name: "TestUtilities"),
133133
],
134134
swiftSettings: swiftSettings // FIXME: Use `[.swiftLanguageMode(.v6)]` here
135135
),
136136

137-
// Test app for SwiftDocCUtilities
137+
// Test app for CommandLine
138138
.executableTarget(
139139
name: "signal-test-app",
140140
dependencies: [
141-
.target(name: "SwiftDocCUtilities"),
141+
.target(name: "CommandLine"),
142142
],
143143
path: "Tests/signal-test-app",
144144
swiftSettings: swiftSettings

Sources/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ See https://swift.org/LICENSE.txt for license information
88
#]]
99

1010
add_subdirectory(SwiftDocC)
11-
add_subdirectory(SwiftDocCUtilities)
11+
add_subdirectory(CommandLine)
1212
add_subdirectory(docc)

0 commit comments

Comments
 (0)