File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ add_subdirectory(SwiftParser)
16
16
add_subdirectory (SwiftParserDiagnostics )
17
17
add_subdirectory (SwiftRefactor )
18
18
add_subdirectory (SwiftOperators )
19
+ add_subdirectory (SwiftIfConfig )
19
20
add_subdirectory (SwiftSyntaxBuilder )
20
21
add_subdirectory (SwiftSyntaxMacros )
21
22
add_subdirectory (SwiftSyntaxMacroExpansion )
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 - 2023 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_host_library (SwiftIfConfig
10
+ BuildConfiguration.swift
11
+ IfConfigEvaluation.swift
12
+ IfConfigFunctions.swift
13
+ IfConfigRewriter.swift
14
+ IfConfigState.swift
15
+ IfConfigVisitor.swift
16
+ SyntaxLiteralUtils.swift
17
+ VersionTuple.swift
18
+ )
19
+
20
+ target_link_libraries (SwiftIfConfig PUBLIC
21
+ SwiftSyntax
22
+ SwiftDiagnostics
23
+ SwiftOperators
24
+ SwiftParser )
You can’t perform that action at this time.
0 commit comments