diff options
author | Eisuke Kawashima <e.kawaschima+github@gmail.com> | 2024-12-10 09:10:27 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-09 16:10:27 -0800 |
commit | 1b90f4a9c472e674d707cbc01520423d305f6b17 (patch) | |
tree | f7a7f1c914bd9f1dfc3ec776bf332495d1bf7cee /src | |
parent | 3bb2d027597107a3d7f84ef61507104fd4dc050a (diff) | |
download | rneovim-1b90f4a9c472e674d707cbc01520423d305f6b17.tar.gz rneovim-1b90f4a9c472e674d707cbc01520423d305f6b17.tar.bz2 rneovim-1b90f4a9c472e674d707cbc01520423d305f6b17.zip |
build: mark CMake variables advanced #31412
The variables are not marked as advanced, thus they appear in e.g. `ccmake`.
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index cffdcf0415..cce8ab5b25 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -826,6 +826,7 @@ target_link_libraries(libnvim PRIVATE main_lib PUBLIC libuv) #------------------------------------------------------------------------------- find_program(CLANG_TIDY_PRG clang-tidy) +mark_as_advanced(CLANG_TIDY_PRG) set(EXCLUDE_CLANG_TIDY typval_encode.c.h ui_events.in.h) if(WIN32) list(APPEND EXCLUDE_CLANG_TIDY |