| 279 | } |
| 280 | |
| 281 | void cmFindBase::ExpandPaths() |
| 282 | { |
| 283 | if (!this->NoDefaultPath) { |
| 284 | if (!this->NoPackageRootPath) { |
| 285 | this->FillPackageRootPath(); |
| 286 | } |
| 287 | if (!this->NoCMakePath) { |
| 288 | this->FillCMakeVariablePath(); |
| 289 | } |
| 290 | if (!this->NoCMakeEnvironmentPath) { |
| 291 | this->FillCMakeEnvironmentPath(); |
| 292 | } |
| 293 | } |
| 294 | this->FillUserHintsPath(); |
| 295 | if (!this->NoDefaultPath) { |
| 296 | if (!this->NoSystemEnvironmentPath) { |
| 297 | this->FillSystemEnvironmentPath(); |
| 298 | } |
| 299 | if (!this->NoCMakeSystemPath) { |
| 300 | this->FillCMakeSystemVariablePath(); |
| 301 | } |
| 302 | } |
| 303 | this->FillUserGuessPath(); |
| 304 | } |
| 305 | |
| 306 | void cmFindBase::FillCMakeEnvironmentPath() |
| 307 | { |
no test coverage detected