Files
swift-mirror/lib/SyntaxParse/CMakeLists.txt
Alex Hoppen 2e5c869866 [libSyntax] Don't cache token nodes
It turns out that caching is actually more expensive than
just creating new nodes.
2021-03-09 09:54:52 +01:00

7 lines
177 B
CMake

set_swift_llvm_is_available()
add_swift_host_library(swiftSyntaxParse STATIC
SyntaxTreeCreator.cpp)
target_link_libraries(swiftSyntaxParse PRIVATE
swiftParse
swiftSyntax)