Files
swift-mirror/tools/swift-ast-script/CMakeLists.txt
Tony Allevato 5284cb6f99 Add dependencies where targets depend on inclusions from unspecified targets.
A follow-up PR adds a flag to control an inline namespace that allows
symbols in libDemangling to be distinguished between the runtime and
the compiler. These dependencies ensure that the flag is plumbed
through for inclusions of Demangling headers that aren't already
covered by existing `target_link_libraries`.
2020-03-31 09:19:41 -07:00

12 lines
307 B
CMake

add_swift_host_tool(swift-ast-script
ASTScriptConfiguration.cpp
ASTScriptParser.cpp
ASTScriptEvaluator.cpp
swift-ast-script.cpp
SWIFT_COMPONENT tools
)
target_link_libraries(swift-ast-script
PRIVATE
swiftAST
swiftFrontendTool)