Files
swift-mirror/lib/SymbolGraphGen/CMakeLists.txt
Allan Shortlidge af032afb9d Serialization: Break the cycle between Serialization and SymbolGraphGen.
Push the top level logic for writing out swiftmodules and associated files into the frontend library which has access to all the necessary dependencies.
2022-10-29 21:37:09 -07:00

15 lines
297 B
CMake

add_swift_host_library(swiftSymbolGraphGen STATIC
AvailabilityMixin.cpp
DeclarationFragmentPrinter.cpp
Edge.cpp
JSON.cpp
Symbol.cpp
SymbolGraph.cpp
SymbolGraphGen.cpp
SymbolGraphASTWalker.cpp)
target_link_libraries(swiftSymbolGraphGen PRIVATE
swiftAST
swiftIDE
swiftMarkup)