mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
036f86feac
This will immensely reduce the complexity required to support both architectures, reduce overall lines of code and unblock follow-up simplifications.
9 lines
355 B
CMake
9 lines
355 B
CMake
get_externalproject_options(treesitter ${DEPS_IGNORE_SHA})
|
|
ExternalProject_Add(treesitter
|
|
DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/treesitter
|
|
PATCH_COMMAND ${CMAKE_COMMAND} -E copy
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cmake/TreesitterCMakeLists.txt
|
|
${DEPS_BUILD_DIR}/src/treesitter/CMakeLists.txt
|
|
CMAKE_ARGS ${DEPS_CMAKE_ARGS}
|
|
${EXTERNALPROJECT_OPTIONS})
|