Files
swift-mirror/unittests/Sema/CMakeLists.txt
Anthony Latsis a6e5e19512 Sema: Minor adjustment to BindingSet dumping
Shorten some of the keys and format them consistently as sentence
fragments rather than identifiers.
2025-01-04 11:27:54 +00:00

21 lines
504 B
CMake

add_swift_unittest(swiftSemaTests
SemaFixture.cpp
BindingInferenceTests.cpp
ConstraintGenerationTests.cpp
ConstraintSimplificationTests.cpp
ConstraintSystemDumpTests.cpp
UnresolvedMemberLookupTests.cpp
PlaceholderTypeInferenceTests.cpp
SolutionFilteringTests.cpp
KeypathFunctionConversionTests.cpp)
target_link_libraries(swiftSemaTests
PRIVATE
swiftAST
swiftSema
swiftSerialization)
target_compile_definitions(swiftSemaTests PRIVATE
SWIFTLIB_DIR=\"${SWIFTLIB_DIR}\")