mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
22 lines
386 B
CMake
22 lines
386 B
CMake
set(swiftDriver_sources
|
|
Action.cpp
|
|
Compilation.cpp
|
|
DependencyGraph.cpp
|
|
Driver.cpp
|
|
FrontendUtil.cpp
|
|
Job.cpp
|
|
OutputFileMap.cpp
|
|
ParseableOutput.cpp
|
|
ToolChain.cpp
|
|
ToolChains.cpp
|
|
Types.cpp
|
|
)
|
|
|
|
set(swiftDriver_targetDefines)
|
|
|
|
add_swift_library(swiftDriver
|
|
${swiftDriver_sources}
|
|
DEPENDS SwiftOptions
|
|
LINK_LIBRARIES swiftAST swiftBasic swiftFrontend swiftOption)
|
|
|