| 373 | } |
| 374 | |
| 375 | void cmStateSnapshot::SetDirectoryDefinitions() |
| 376 | { |
| 377 | this->SetDefinition("CMAKE_SOURCE_DIR", this->State->GetSourceDirectory()); |
| 378 | this->SetDefinition("CMAKE_CURRENT_SOURCE_DIR", |
| 379 | this->State->GetSourceDirectory()); |
| 380 | this->SetDefinition("CMAKE_BINARY_DIR", this->State->GetBinaryDirectory()); |
| 381 | this->SetDefinition("CMAKE_CURRENT_BINARY_DIR", |
| 382 | this->State->GetBinaryDirectory()); |
| 383 | } |
| 384 | |
| 385 | void cmStateSnapshot::InitializeFromParent() |
| 386 | { |
no test coverage detected