mirror of
https://github.com/neovim/neovim.git
synced 2024-12-24 21:25:04 -07:00
build: create BINARY_LIB_DIR directory before adding parser
cmake -E copy_directory behaves differently depending on if the directory in question exists or not. Always create it to ensure it behaves consistently.
This commit is contained in:
parent
215244f749
commit
f8310beeed
@ -762,6 +762,8 @@ if(WIN32)
|
|||||||
add_dependencies(nvim_runtime_deps external_blobs)
|
add_dependencies(nvim_runtime_deps external_blobs)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
file(MAKE_DIRECTORY ${BINARY_LIB_DIR})
|
||||||
|
|
||||||
# install treesitter parser if bundled
|
# install treesitter parser if bundled
|
||||||
if(EXISTS ${DEPS_PREFIX}/lib/nvim/parser)
|
if(EXISTS ${DEPS_PREFIX}/lib/nvim/parser)
|
||||||
add_custom_command(TARGET nvim_runtime_deps COMMAND ${CMAKE_COMMAND} -E ${COPY_DIRECTORY} ${DEPS_PREFIX}/lib/nvim/parser ${BINARY_LIB_DIR}/parser)
|
add_custom_command(TARGET nvim_runtime_deps COMMAND ${CMAKE_COMMAND} -E ${COPY_DIRECTORY} ${DEPS_PREFIX}/lib/nvim/parser ${BINARY_LIB_DIR}/parser)
|
||||||
|
Loading…
Reference in New Issue
Block a user