mirror of
https://github.com/neovim/neovim
synced 2025-07-16 09:11:51 +00:00
Previously, all targets were connected in one main target called third-party in order to remove any potentially conflicting shared library. We can make each dependency target independent of each other by only removing shared libraries from luajit and msgpack in their own targets, as only these has unwanted shared libraries.
15 lines
496 B
CMake
15 lines
496 B
CMake
if(USE_EXISTING_SRC_DIR)
|
|
unset(TREESITTER_URL)
|
|
endif()
|
|
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})
|