mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 22:50:26 -06:00
cmGeneratorTarget::GetProperty: return cmProp
This commit is contained in:
@@ -111,13 +111,13 @@ void cmCustomCommandGenerator::FillEmulatorsWithArguments()
|
||||
if (target && target->GetType() == cmStateEnums::EXECUTABLE &&
|
||||
!target->IsImported()) {
|
||||
|
||||
const char* emulator_property =
|
||||
cmProp emulator_property =
|
||||
target->GetProperty("CROSSCOMPILING_EMULATOR");
|
||||
if (!emulator_property) {
|
||||
continue;
|
||||
}
|
||||
|
||||
cmExpandList(emulator_property, this->EmulatorsWithArguments[c]);
|
||||
cmExpandList(*emulator_property, this->EmulatorsWithArguments[c]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user