Files
swift-mirror/unittests/Sema/CMakeLists.txt
Pavel Yaskevich 37da96092c [CSGen] Don't expect implicit casts to have type reprs
Implicit casts are allowed to be constructed with a type, instead
of a type repr. Constraint generation should honor that, and fallback
to using cast type when repr is was not given.
2022-03-22 13:19:32 -07:00

19 lines
435 B
CMake

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