| 2192 | } |
| 2193 | |
| 2194 | void cmake::SetHomeOutputDirectory(std::string const& dir) |
| 2195 | { |
| 2196 | assert(!dir.empty()); |
| 2197 | this->State->SetBinaryDirectory(dir); |
| 2198 | if (this->CurrentSnapshot.IsValid()) { |
| 2199 | this->CurrentSnapshot.SetDefinition("CMAKE_BINARY_DIR", dir); |
| 2200 | } |
| 2201 | } |
| 2202 | |
| 2203 | std::string const& cmake::GetHomeOutputDirectory() const |
| 2204 | { |
no test coverage detected