Merge topic 'fbuild_fix_globbing'

6fd6bfab6f FASTBuild: fix globbing for large projects

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: 风之凌殇 <fzls.zju@gmail.com>
Merge-request: !11310
This commit is contained in:
Brad King
2025-10-16 12:54:30 +00:00
committed by Kitware Robot

View File

@@ -1543,8 +1543,8 @@ void cmGlobalFastbuildGenerator::AddGlobCheckExec()
FastbuildExecNode globCheck;
globCheck.Name = FASTBUILD_GLOB_CHECK_TARGET;
globCheck.ExecExecutable = cmSystemTools::GetCMakeCommand();
globCheck.ExecArguments = "-P " FASTBUILD_1_INPUT_PLACEHOLDER;
globCheck.ExecInput = { this->ConvertToFastbuildPath(globScript) };
globCheck.ExecArguments =
cmStrCat("-P ", this->ConvertToFastbuildPath(globScript));
globCheck.ExecAlways = false;
globCheck.ExecUseStdOutAsOutput = false;
auto const cache = this->GetCMakeInstance()->GetGlobCacheEntries();