Files
swift-mirror/lib/SymbolGraphGen/CMakeLists.txt
Saleem Abdulrasool d8b3b626fe build: use modern target property handling
Use specific operations for setting the compile flags, link flags,
linked libraries, and library search paths.  This allows us to use CMake
more effectively, simplifies the logic, and will ensure that flags are
not duplicated.
2020-01-25 16:08:51 -08:00

14 lines
278 B
CMake

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