Skip to content

Commit 6189897

Browse files
committed
[Macros] Add missing scope keyword for target_link_libraries
'target_link_libraries(_swiftCSwiftPluginServer ...)' didn't have it.
1 parent 7505a8a commit 6189897

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/swift-plugin-server/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ if (SWIFT_SWIFT_PARSER)
44
add_swift_host_library(_swiftCSwiftPluginServer OBJECT
55
Sources/CSwiftPluginServer/PluginServer.cpp
66
)
7-
target_link_libraries(_swiftCSwiftPluginServer
7+
target_link_libraries(_swiftCSwiftPluginServer PRIVATE
88
swiftDemangling
99
)
1010
target_include_directories(_swiftCSwiftPluginServer PUBLIC

0 commit comments

Comments
 (0)