neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 831d662ac6756cab4fed6a9b394e68933b5fe325
parent eadedfd9084c338a9162ef3706756bda443d6559
Author: dundargoc <gocdundar@gmail.com>
Date:   Tue, 17 Oct 2023 16:57:57 +0200

build: add sub-targets to the doc target

It's easier to debug and to customize scripting if there are sub-targets
that build up each target.

Diffstat:
Msrc/nvim/CMakeLists.txt | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt @@ -942,7 +942,7 @@ add_custom_command( WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} ) -add_custom_target(doc - DEPENDS ${VIMDOC_FILES} ${GEN_EVAL_FILES} -) - +add_custom_target(doc-eval DEPENDS ${GEN_EVAL_FILES}) +add_custom_target(doc-vim DEPENDS ${VIMDOC_FILES}) +add_custom_target(doc) +add_dependencies(doc doc-vim doc-eval)