|
| 1 | +# This source file is part of the Swift.org open source project |
| 2 | +# |
| 3 | +# Copyright (c) 2014 - 2019 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_library(SwiftDriver |
| 10 | + Driver/CompilerMode.swift |
| 11 | + Driver/DebugInfo.swift |
| 12 | + Driver/Driver.swift |
| 13 | + Driver/LinkKind.swift |
| 14 | + Driver/OutputFileMap.swift |
| 15 | + Driver/ToolExecutionDelegate.swift |
| 16 | + |
| 17 | + Execution/JobExecutor.swift |
| 18 | + Execution/ParsableOutput.swift |
| 19 | + Execution/ProcessProtocol.swift |
| 20 | + Execution/llbuild.swift |
| 21 | + |
| 22 | + "Incremental Compilation/IncrementalCompilation.swift" |
| 23 | + "Incremental Compilation/InputIInfoMap.swift" |
| 24 | + "Incremental Compilation/InputInfo.swift" |
| 25 | + |
| 26 | + Jobs/AutolinkExtractJob.swift |
| 27 | + Jobs/CommandLineArguments.swift |
| 28 | + Jobs/CompileJob.swift |
| 29 | + Jobs/DarwinToolchain+LinkerSupport.swift |
| 30 | + Jobs/EmitModuleJob.swift |
| 31 | + Jobs/FrontendJobHelpers.swift |
| 32 | + Jobs/GenerateDSYMJob.swift |
| 33 | + Jobs/GeneratePCHJob.swift |
| 34 | + Jobs/GeneratePCMJob.swift |
| 35 | + Jobs/GenericUnixToolchain+LinkerSupport.swift |
| 36 | + Jobs/InterpretJob.swift |
| 37 | + Jobs/Job.swift |
| 38 | + Jobs/LinkJob.swift |
| 39 | + Jobs/MergeModuleJob.swift |
| 40 | + Jobs/Planning.swift |
| 41 | + Jobs/ReplJob.swift |
| 42 | + Jobs/Toolchain+InterpreterSupport.swift |
| 43 | + Jobs/Toolchain+LinkerSupport.swift |
| 44 | + Jobs/VerifyDebugInfoJob.swift |
| 45 | + |
| 46 | + Toolchains/DarwinToolchain.swift |
| 47 | + Toolchains/GenericUnixToolchain.swift |
| 48 | + Toolchains/Toolchain.swift |
| 49 | + |
| 50 | + Utilities/DOTJobGraphSerializer.swift |
| 51 | + Utilities/DateAdditions.swift |
| 52 | + Utilities/Diagnostics.swift |
| 53 | + Utilities/FileType.swift |
| 54 | + Utilities/PredictableRandomNumberGenerator.swift |
| 55 | + Utilities/RelativePathAdditions.swift |
| 56 | + Utilities/Sanitizer.swift |
| 57 | + Utilities/StringAdditions.swift |
| 58 | + Utilities/System.swift |
| 59 | + Utilities/Triple+Platforms.swift |
| 60 | + Utilities/Triple.swift |
| 61 | + Utilities/TypedVirtualPath.swift |
| 62 | + Utilities/VirtualPath.swift) |
| 63 | + |
| 64 | +target_link_libraries(SwiftDriver PUBLIC |
| 65 | + TSCBasic |
| 66 | + SwiftOptions |
| 67 | + LLBuild |
| 68 | + llbuildSwift |
| 69 | + CYaml |
| 70 | + Yams) |
0 commit comments