From 6eb25f28aa497802734a7bf0616d33507523f57c Mon Sep 17 00:00:00 2001 From: Ilya Churaev Date: Mon, 11 Mar 2024 08:57:59 +0300 Subject: [PATCH] Fixed "Executable "" was not found" after :CMake call --- autoload/utils/cmake.vim | 9 +++++---- autoload/utils/cmake/common.vim | 4 +++- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/autoload/utils/cmake.vim b/autoload/utils/cmake.vim index 36423d3..d27bd49 100644 --- a/autoload/utils/cmake.vim +++ b/autoload/utils/cmake.vim @@ -300,7 +300,8 @@ function! utils#cmake#getBuildDir() abort endfunction function! utils#cmake#getBinaryPath(...) abort - let l:cmake_info = utils#cmake#common#getInfo() + let l:build_dir = utils#cmake#getBuildDir() + let l:cmake_info = utils#cmake#common#getInfo(l:build_dir) let l:build_type = s:detectCMakeBuildType() if has_key(l:cmake_info, 'targets') && has_key(l:cmake_info['targets'], l:build_type) && has_key(l:cmake_info['targets'][l:build_type], g:cmake_build_target) if !has('win32') @@ -319,7 +320,7 @@ function! utils#cmake#getBinaryPath(...) abort let l:exec_path = '' " Check absolute path /... if l:target['pathes'][0][0] !=# '/' - let l:exec_path = utils#cmake#getBuildDir() . '/' + let l:exec_path = l:build_dir . '/' endif let l:exec_path .= l:target['pathes'][0] return l:exec_path @@ -329,7 +330,7 @@ function! utils#cmake#getBinaryPath(...) abort let l:exec_path = '' " Check absolute path C:... if l:path[1] !=# ':' - let l:exec_path = utils#cmake#getBuildDir() . '/' + let l:exec_path = l:build_dir . '/' endif let l:exec_path .= l:path return l:exec_path @@ -344,7 +345,7 @@ function! utils#cmake#getBinaryPath(...) abort let l:exec_filename = g:cmake_build_target endif - let l:exec_path = findfile(exec_filename, utils#fs#fnameescape(utils#cmake#getBuildDir()) . '/**') + let l:exec_path = findfile(exec_filename, utils#fs#fnameescape(l:build_dir) . '/**') if !empty(l:exec_path) let l:exec_path = fnamemodify(l:exec_path, ':p') endif diff --git a/autoload/utils/cmake/common.vim b/autoload/utils/cmake/common.vim index cce3690..41dad16 100644 --- a/autoload/utils/cmake/common.vim +++ b/autoload/utils/cmake/common.vim @@ -32,7 +32,9 @@ function! utils#cmake#common#getInfo(...) abort if exists('a:1') && !empty(a:1) let l:build_dir = a:1 endif - if !empty(l:build_dir) && empty(s:cmake_cache_info) + " Recall collecting information if cmake info doesn't contain information + " about targets + if !empty(l:build_dir) && (empty(s:cmake_cache_info) || !has_key(s:cmake_cache_info, 'targets')) call utils#cmake#common#collectCMakeInfo(l:build_dir) endif if !executable('cmake') || empty(s:cmake_cache_info)