Return whether the given binary directory is unused. */
| 556 | |
| 557 | /** Return whether the given binary directory is unused. */ |
| 558 | bool BinaryDirectoryIsNew(std::string const& dir) |
| 559 | { |
| 560 | return this->BinaryDirectories.insert(dir).second; |
| 561 | } |
| 562 | |
| 563 | /** Return true if the generated build tree may contain multiple builds. |
| 564 | i.e. "Can I build Debug and Release in the same tree?" */ |
no test coverage detected