Skip to content

Commit 4da7c14

Browse files
authored
Workspace: fix target_link_libraries (#6280)
The target that was supposed to link against Foundation was Workspace. Because we changed a dependency, the transitive closure happened to make this work.
1 parent 65453fb commit 4da7c14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Workspace/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ target_link_libraries(Workspace PUBLIC
3535
PackageRegistry
3636
PackageSigning
3737
SourceControl)
38-
target_link_libraries(PackageLoading PUBLIC
38+
target_link_libraries(Workspace PUBLIC
3939
$<$<NOT:$<PLATFORM_ID:Darwin>>:Foundation>)
4040
# NOTE(compnerd) workaround for CMake not setting up include flags yet
4141
set_target_properties(Workspace PROPERTIES

0 commit comments

Comments
 (0)