Skip to content

Commit e56e867

Browse files
committed
Remove SPMLLBuild as a dependency of PackageLoading, since it is no longer needed.
Because PackageLoading no longer uses llbuild to compile the manifest (instead using a simpler mechanism combined with a SQLite cache), it no longer needs to depend on the SPMLLBuild target.
1 parent b365ce6 commit e56e867

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ let package = Package(
109109
.target(
110110
/** Package model conventions and loading support */
111111
name: "PackageLoading",
112-
dependencies: ["SwiftToolsSupport-auto", "PackageModel", "SPMLLBuild"]),
112+
dependencies: ["SwiftToolsSupport-auto", "PackageModel"]),
113113

114114
// MARK: Package Dependency Resolution
115115

Sources/PackageLoading/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ add_library(PackageLoading
2121
target_link_libraries(PackageLoading PUBLIC
2222
TSCBasic
2323
PackageModel
24-
TSCUtility
25-
SPMLLBuild)
24+
TSCUtility)
2625
if(Foundation_FOUND)
2726
target_link_libraries(PackageLoading PUBLIC
2827
$<$<NOT:$<PLATFORM_ID:Darwin>>:Foundation>)

0 commit comments

Comments
 (0)