Files
swift-mirror/unittests/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

15 lines
298 B
CMake

add_swift_unittest(swiftScanTests
ScanFixture.cpp
Features.cpp
PrintTarget.cpp
ModuleDeps.cpp)
target_link_libraries(swiftScanTests
PRIVATE
swiftFrontend
swiftDependencyScan
libSwiftScan)
target_compile_definitions(swiftScanTests PRIVATE
SWIFTLIB_DIR=\"${SWIFTLIB_DIR}\")