mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This is a simple tool that starts lldb, but before it runs your commands, uses the -O command to load lldbToolBox.py. This provide sthe llvm data formatters as well as potential future lldb extensions that we write for swift itself. A better name for this utility would be much appreciated, but I think for now the name "lldb-with-tools" is at least self explanatory.
16 lines
408 B
CMake
16 lines
408 B
CMake
add_subdirectory(vim)
|
|
add_subdirectory(lldb)
|
|
|
|
swift_install_in_component(editor-integration
|
|
FILES swift-mode.el
|
|
DESTINATION "share/emacs/site-lisp")
|
|
|
|
swift_install_in_component(tools
|
|
FILES swift-api-dump.py
|
|
DESTINATION bin)
|
|
|
|
# We install LLVM's FileCheck, if requested.
|
|
swift_install_in_component(toolchain-dev-tools
|
|
FILES "${SWIFT_PATH_TO_LLVM_BUILD}/bin/FileCheck"
|
|
DESTINATION bin)
|