File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ add_subdirectory(SwiftSyntax)
1111add_subdirectory (SwiftDiagnostics)
1212add_subdirectory (SwiftParser)
1313add_subdirectory (SwiftParserDiagnostics)
14+ add_subdirectory (SwiftRefactor)
1415add_subdirectory (SwiftOperators)
1516add_subdirectory (SwiftSyntaxBuilder)
1617add_subdirectory (SwiftSyntaxMacros)
Original file line number Diff line number Diff line change 1+ # This source file is part of the Swift.org open source project
2+ #
3+ # Copyright (c) 2014 - 2024 Apple Inc. and the Swift project authors
4+ # Licensed under Apache License v2.0 with Runtime Library Exception
5+ #
6+ # See http://swift.org/LICENSE.txt for license information
7+ # See http://swift.org/CONTRIBUTORS.txt for Swift project authors
8+
9+ add_swift_syntax_library(SwiftRefactor
10+ AddSeparatorsToIntegerLiteral.swift
11+ CallToTrailingClosures.swift
12+ ExpandEditorPlaceholder.swift
13+ FormatRawStringLiteral.swift
14+ IntegerLiteralUtilities.swift
15+ MigrateToNewIfLetSyntax.swift
16+ OpaqueParameterToGeneric.swift
17+ RefactoringProvider.swift
18+ RemoveSeparatorsFromIntegerLiteral.swift
19+ )
20+
21+ target_link_swift_syntax_libraries(SwiftRefactor PUBLIC
22+ SwiftBasicFormat
23+ SwiftParser
24+ SwiftSyntax
25+ SwiftSyntaxBuilder
26+ )
You can’t perform that action at this time.
0 commit comments