| 68 | } |
| 69 | |
| 70 | void cmSourceFileLocation::Update(cmSourceFileLocation const& loc) |
| 71 | { |
| 72 | if (this->AmbiguousDirectory && !loc.AmbiguousDirectory) { |
| 73 | this->Directory = loc.Directory; |
| 74 | this->AmbiguousDirectory = false; |
| 75 | } |
| 76 | if (this->AmbiguousExtension && !loc.AmbiguousExtension) { |
| 77 | this->Name = loc.Name; |
| 78 | this->AmbiguousExtension = false; |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | void cmSourceFileLocation::DirectoryUseSource() |
| 83 | { |