MCPcopy Create free account
hub / github.com/Kitware/CMake / HasOnlyEmptyCommandLines

Method HasOnlyEmptyCommandLines

Source/cmCustomCommandGenerator.cxx:338–348  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

336}
337
338bool cmCustomCommandGenerator::HasOnlyEmptyCommandLines() const
339{
340 for (cmCustomCommandLine const& ccl : this->CommandLines) {
341 for (std::string const& cl : ccl) {
342 if (!cl.empty()) {
343 return false;
344 }
345 }
346 }
347 return true;
348}
349
350std::string cmCustomCommandGenerator::GetCommand(unsigned int c) const
351{

Callers 2

WriteEventMethod · 0.80
WriteSdkStyleEventMethod · 0.80

Calls 1

emptyMethod · 0.45

Tested by

no test coverage detected