mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-08 06:40:48 -06:00
Merge topic 'autogen_header_in_symbolic_path_fix'
00e6b67e0c Autogen: Fix header detection for paths with symbolic links
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !3431
This commit is contained in:
@@ -721,9 +721,9 @@ bool cmQtAutoGenInitializer::InitScanFiles()
|
||||
MUFile const& muf = *pair.second;
|
||||
if (muf.MocIt || muf.UicIt) {
|
||||
// Search for the default header file and a private header
|
||||
std::string const& realPath = muf.RealPath;
|
||||
std::string basePath = cmQtAutoGen::SubDirPrefix(realPath);
|
||||
basePath += cmSystemTools::GetFilenameWithoutLastExtension(realPath);
|
||||
std::string const& srcPath = muf.SF->GetFullPath();
|
||||
std::string basePath = cmQtAutoGen::SubDirPrefix(srcPath);
|
||||
basePath += cmSystemTools::GetFilenameWithoutLastExtension(srcPath);
|
||||
for (auto const& suffix : suffixes) {
|
||||
std::string const suffixedPath = basePath + suffix;
|
||||
for (auto const& ext : exts) {
|
||||
|
||||
Reference in New Issue
Block a user