diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2019-11-20 14:44:28 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2019-11-20 14:46:10 (GMT) |
commit | 51c69fe5f88ea8ed262665b953f1202668ba9cf8 (patch) | |
tree | 004fa3ec0ac3bee098e9b2a4991a674dbce1f77f /Source/cmGlobalGenerator.cxx | |
parent | 5f630a934aa4b8616aa59988ea70c14065d3a08d (diff) | |
download | CMake-51c69fe5f88ea8ed262665b953f1202668ba9cf8.zip CMake-51c69fe5f88ea8ed262665b953f1202668ba9cf8.tar.gz CMake-51c69fe5f88ea8ed262665b953f1202668ba9cf8.tar.bz2 |
FileAPI: Add "multiConfig" parameter to index file
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index d903289..e38066f 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -124,6 +124,7 @@ Json::Value cmGlobalGenerator::GetJson() const { Json::Value generator = Json::objectValue; generator["name"] = this->GetName(); + generator["multiConfig"] = this->IsMultiConfig(); return generator; } #endif |