mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
21 lines
793 B
CMake
21 lines
793 B
CMake
add_swift_host_tool(swift-llvm-opt
|
|
LLVMOpt.cpp
|
|
SWIFT_COMPONENT tools
|
|
)
|
|
target_link_libraries(swift-llvm-opt
|
|
PRIVATE
|
|
swiftIRGen
|
|
# Swift libraries included to appease the linker on linux.
|
|
swiftSema
|
|
swiftAST
|
|
# Clang libraries included to appease the linker on linux.
|
|
clangBasic
|
|
clangCodeGen
|
|
# LLVM libraries included to appease the linker on linux.
|
|
LLVMAggressiveInstCombine
|
|
LLVMCodeGen
|
|
LLVMInstCombine
|
|
LLVMScalarOpts
|
|
LLVMVectorize
|
|
)
|