https://github.com/Kitware/CMake
Revision 8f67d42671942aebfe345a574c563f59efe931d0 authored by Brad King on 14 September 2021, 13:42:31 UTC, committed by Kitware Robot on 14 September 2021, 13:42:50 UTC
161990b921 FindMatlab: Add imported targets

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Ben Boeckel <ben.boeckel@kitware.com>
Merge-request: !6488
2 parent s fdeb9e0 + 161990b
Raw File
Tip revision: 8f67d42671942aebfe345a574c563f59efe931d0 authored by Brad King on 14 September 2021, 13:42:31 UTC
Merge topic 'find-matlab-imported-targets'
Tip revision: 8f67d42
CMakeLists.txt
# Install Vim files to a typical system integration directory.
# Packagers can set CMake_INSTALL_VIMFILES_DIR to control this.
if(NOT CMake_INSTALL_VIMFILES_DIR)
  set(CMake_INSTALL_VIMFILES_DIR ${CMAKE_XDGDATA_DIR}/vim/vimfiles)
endif()
install(DIRECTORY vim/indent vim/syntax DESTINATION ${CMake_INSTALL_VIMFILES_DIR})

# Install Emacs files to a typical system integration directory.
# Packagers can set CMake_INSTALL_EMACS_DIR to control this.
if(NOT CMake_INSTALL_EMACS_DIR)
  set(CMake_INSTALL_EMACS_DIR ${CMAKE_XDGDATA_DIR}/emacs/site-lisp)
endif()
install(FILES cmake-mode.el DESTINATION ${CMake_INSTALL_EMACS_DIR})

install(FILES cmake.m4 DESTINATION ${CMAKE_XDGDATA_DIR}/aclocal)
add_subdirectory (bash-completion)
back to top