mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
19 lines
348 B
CMake
19 lines
348 B
CMake
add_swift_executable(swift-llvm-opt
|
|
LLVMOpt.cpp
|
|
LINK_LIBRARIES
|
|
swiftIRGen
|
|
|
|
# Swift libraries included to appease the linker on linux.
|
|
swiftSema
|
|
swiftAST
|
|
|
|
# Clang libraries included to appease the linker on linux.
|
|
clangBasic
|
|
clangCodeGen
|
|
)
|
|
|
|
swift_install_in_component(tools
|
|
TARGETS swift-llvm-opt
|
|
RUNTIME DESTINATION bin)
|
|
|