Files
swift-mirror/lib/SymbolGraphGen/CMakeLists.txt
Ashley Garland 118e7c3cda [SymbolGraph] Inherit availability from parent contexts
Also be a little smarter about encountering duplicate `@available`
attributes on the same declaration.

rdar://63570830
2020-06-02 11:32:04 -07:00

15 lines
302 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
swiftFrontend
swiftMarkup)