mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-04 13:19:51 -05:00
Refactor: Allow cmInstallGenerator::Compute() to return an error
This is preparation for an upcoming merge request, which will add a new cmInstallGenerator that returns false if there are errors in the Compute() step.
This commit is contained in:
@@ -30,10 +30,11 @@ cmInstallExportAndroidMKGenerator::~cmInstallExportAndroidMKGenerator()
|
||||
{
|
||||
}
|
||||
|
||||
void cmInstallExportAndroidMKGenerator::Compute(cmLocalGenerator* lg)
|
||||
bool cmInstallExportAndroidMKGenerator::Compute(cmLocalGenerator* lg)
|
||||
{
|
||||
this->LocalGenerator = lg;
|
||||
this->ExportSet->Compute(lg);
|
||||
return true;
|
||||
}
|
||||
|
||||
void cmInstallExportAndroidMKGenerator::GenerateScript(std::ostream& os)
|
||||
|
||||
Reference in New Issue
Block a user