mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This will let me reuse toolchain-dev-tools for tools useful in a just built toolchain but that are from Swift rather than copied from LLVM.
18 lines
711 B
CMake
18 lines
711 B
CMake
add_subdirectory(vim)
|
|
add_subdirectory(lldb)
|
|
add_subdirectory(api_checker)
|
|
|
|
swift_install_in_component(FILES swift-mode.el
|
|
DESTINATION "share/emacs/site-lisp"
|
|
COMPONENT editor-integration)
|
|
|
|
swift_install_in_component(PROGRAMS swift-api-dump.py
|
|
DESTINATION bin
|
|
COMPONENT tools)
|
|
|
|
# We install LLVM's FileCheck, if requested.
|
|
file(TO_CMAKE_PATH "${LLVM_BUILD_BINARY_DIR}/bin/FileCheck${CMAKE_EXECUTABLE_SUFFIX}" _SWIFT_UTILS_FILECHECK)
|
|
swift_install_in_component(PROGRAMS "${_SWIFT_UTILS_FILECHECK}"
|
|
DESTINATION bin
|
|
COMPONENT llvm-toolchain-dev-tools)
|