mirror of
https://github.com/reactos/CMake.git
synced 2024-12-14 07:09:22 +00:00
server-mode: Do not crash when running into INTERFACE_LIBRARY
Closes: #16539
This commit is contained in:
parent
eee51e24d2
commit
c0bd1eb6d0
@ -731,12 +731,16 @@ static Json::Value DumpTarget(cmGeneratorTarget* target,
|
||||
|
||||
Json::Value result = Json::objectValue;
|
||||
result[kNAME_KEY] = target->GetName();
|
||||
|
||||
result[kTYPE_KEY] = typeName;
|
||||
result[kFULL_NAME_KEY] = target->GetFullName(config);
|
||||
result[kSOURCE_DIRECTORY_KEY] = lg->GetCurrentSourceDirectory();
|
||||
result[kBUILD_DIRECTORY_KEY] = lg->GetCurrentBinaryDirectory();
|
||||
|
||||
if (type == cmStateEnums::INTERFACE_LIBRARY) {
|
||||
return result;
|
||||
}
|
||||
|
||||
result[kFULL_NAME_KEY] = target->GetFullName(config);
|
||||
|
||||
if (target->HaveWellDefinedOutputFiles()) {
|
||||
Json::Value artifacts = Json::arrayValue;
|
||||
artifacts.append(target->GetFullPath(config, false));
|
||||
|
Loading…
Reference in New Issue
Block a user