mirror of
https://github.com/neovim/neovim.git
synced 2025-09-10 05:18:16 +00:00

This will reduce required boilerplate, but more importantly it will automatically unset variables ending on URL. This will help people needing to avoid to unset the URL variable each time a new dependency is added. It is possible that this may remove a non-download variable ending on "URL" in the future, however, the risk of this is likely much lower than the risk of someone forgetting to unset the variable.
12 lines
439 B
CMake
12 lines
439 B
CMake
ExternalProject_Add(tree-sitter
|
|
URL ${TREESITTER_URL}
|
|
URL_HASH SHA256=${TREESITTER_SHA256}
|
|
DOWNLOAD_NO_PROGRESS TRUE
|
|
DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/tree-sitter
|
|
INSTALL_DIR ${DEPS_INSTALL_DIR}
|
|
PATCH_COMMAND ${CMAKE_COMMAND} -E copy
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cmake/TreesitterCMakeLists.txt
|
|
${DEPS_BUILD_DIR}/src/tree-sitter/CMakeLists.txt
|
|
CMAKE_ARGS ${DEPS_CMAKE_ARGS}
|
|
CMAKE_CACHE_ARGS ${DEPS_CMAKE_CACHE_ARGS})
|