diff options
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | src/.asan-blacklist | 2 | ||||
-rw-r--r-- | src/nvim/CMakeLists.txt | 6 |
3 files changed, 10 insertions, 1 deletions
@@ -142,6 +142,9 @@ clint-full: build/.ran-cmake check-single-includes: build/.ran-cmake +$(BUILD_CMD) -C build check-single-includes +generated-sources: build/.ran-cmake + +$(BUILD_CMD) -C build generated-sources + appimage: bash scripts/genappimage.sh diff --git a/src/.asan-blacklist b/src/.asan-blacklist index 9d7f721a88..b0eb9a62a9 100644 --- a/src/.asan-blacklist +++ b/src/.asan-blacklist @@ -4,4 +4,4 @@ fun:tv_dict_watcher_node_data # Allocation in loop_schedule_deferred() is freed by loop_deferred_event(), but # this sometimes does not happen during teardown. -func:loop_schedule_deferred +fun:loop_schedule_deferred diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index b32d54b28e..29a4e1e163 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -660,4 +660,10 @@ add_custom_target( DEPENDS ${LINT_PRG} ${LINT_NVIM_SOURCES} ${LINT_SUPPRESS_FILE} ) +add_custom_target(generated-sources DEPENDS + ${NVIM_GENERATED_FOR_SOURCES} + ${NVIM_GENERATED_FOR_HEADERS} + ${NVIM_GENERATED_SOURCES} +) + add_subdirectory(po) |