Files
swift-mirror/lib/DependencyScan/CMakeLists.txt
Artem Chikin b4dfb6baa1 [Dependency Scanning] Implement parallel imported module resolution
'ModuleDependencyScanner' maintains a Thread Pool along with a pool of workers
which are capable of executing a filesystem lookup of a named module dependency.
When resolving imports of a given Swift module, each import's resolution
operation can be issued asunchronously.
2023-09-22 14:11:26 -07:00

17 lines
374 B
CMake

add_swift_host_library(swiftDependencyScan STATIC
DependencyScanningTool.cpp
ModuleDependencyCacheSerialization.cpp
ModuleDependencyScanner.cpp
ScanDependencies.cpp
StringUtils.cpp)
target_link_libraries(swiftDependencyScan INTERFACE
clangBasic)
target_link_libraries(swiftDependencyScan PRIVATE
swiftClangImporter
swiftAST
swiftSerialization)