| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807 | 
							- /* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
 
-    file Copyright.txt or https://cmake.org/licensing for details.  */
 
- #include "cmGhsMultiTargetGenerator.h"
 
- #include <algorithm>
 
- #include <memory>
 
- #include <ostream>
 
- #include <set>
 
- #include <utility>
 
- #include <vector>
 
- #include <cm/optional>
 
- #include "cmCustomCommand.h"
 
- #include "cmCustomCommandGenerator.h"
 
- #include "cmGeneratedFileStream.h"
 
- #include "cmGeneratorTarget.h"
 
- #include "cmGlobalGhsMultiGenerator.h"
 
- #include "cmLinkLineComputer.h" // IWYU pragma: keep
 
- #include "cmList.h"
 
- #include "cmLocalGenerator.h"
 
- #include "cmLocalGhsMultiGenerator.h"
 
- #include "cmMakefile.h"
 
- #include "cmOutputConverter.h"
 
- #include "cmSourceFile.h"
 
- #include "cmSourceFileLocation.h"
 
- #include "cmSourceGroup.h"
 
- #include "cmStateDirectory.h"
 
- #include "cmStateSnapshot.h"
 
- #include "cmStateTypes.h"
 
- #include "cmStringAlgorithms.h"
 
- #include "cmSystemTools.h"
 
- #include "cmTarget.h"
 
- #include "cmValue.h"
 
- cmGhsMultiTargetGenerator::cmGhsMultiTargetGenerator(cmGeneratorTarget* target)
 
-   : GeneratorTarget(target)
 
-   , LocalGenerator(
 
-       static_cast<cmLocalGhsMultiGenerator*>(target->GetLocalGenerator()))
 
-   , Makefile(target->Target->GetMakefile())
 
-   , Name(target->GetName())
 
- {
 
-   // Store the configuration name that is being used
 
-   if (cmValue config = this->Makefile->GetDefinition("CMAKE_BUILD_TYPE")) {
 
-     // Use the build type given by the user.
 
-     this->ConfigName = *config;
 
-   } else {
 
-     // No configuration type given.
 
-     this->ConfigName.clear();
 
-   }
 
- }
 
- cmGhsMultiTargetGenerator::~cmGhsMultiTargetGenerator() = default;
 
- void cmGhsMultiTargetGenerator::Generate()
 
- {
 
-   // Determine type of target for this project
 
-   switch (this->GeneratorTarget->GetType()) {
 
-     case cmStateEnums::EXECUTABLE: {
 
-       // Get the name of the executable to generate.
 
-       this->TargetNameReal =
 
-         this->GeneratorTarget->GetExecutableNames(this->ConfigName).Real;
 
-       if (this->cmGhsMultiTargetGenerator::DetermineIfIntegrityApp()) {
 
-         this->TagType = GhsMultiGpj::INTERGRITY_APPLICATION;
 
-       } else {
 
-         this->TagType = GhsMultiGpj::PROGRAM;
 
-       }
 
-       break;
 
-     }
 
-     case cmStateEnums::STATIC_LIBRARY: {
 
-       this->TargetNameReal =
 
-         this->GeneratorTarget->GetLibraryNames(this->ConfigName).Real;
 
-       this->TagType = GhsMultiGpj::LIBRARY;
 
-       break;
 
-     }
 
-     case cmStateEnums::SHARED_LIBRARY: {
 
-       std::string msg =
 
-         cmStrCat("add_library(<name> SHARED ...) not supported: ", this->Name);
 
-       cmSystemTools::Message(msg);
 
-       return;
 
-     }
 
-     case cmStateEnums::OBJECT_LIBRARY: {
 
-       this->TargetNameReal =
 
-         this->GeneratorTarget->GetLibraryNames(this->ConfigName).Real;
 
-       this->TagType = GhsMultiGpj::SUBPROJECT;
 
-       break;
 
-     }
 
-     case cmStateEnums::MODULE_LIBRARY: {
 
-       std::string msg =
 
-         cmStrCat("add_library(<name> MODULE ...) not supported: ", this->Name);
 
-       cmSystemTools::Message(msg);
 
-       return;
 
-     }
 
-     case cmStateEnums::UTILITY: {
 
-       this->TargetNameReal = this->GeneratorTarget->GetName();
 
-       this->TagType = GhsMultiGpj::CUSTOM_TARGET;
 
-       break;
 
-     }
 
-     case cmStateEnums::GLOBAL_TARGET: {
 
-       this->TargetNameReal = this->GeneratorTarget->GetName();
 
-       if (this->TargetNameReal ==
 
-           this->GetGlobalGenerator()->GetInstallTargetName()) {
 
-         this->TagType = GhsMultiGpj::CUSTOM_TARGET;
 
-       } else {
 
-         return;
 
-       }
 
-       break;
 
-     }
 
-     default:
 
-       return;
 
-   }
 
-   this->GenerateTarget();
 
- }
 
- void cmGhsMultiTargetGenerator::GenerateTarget()
 
- {
 
-   // Open the target file in copy-if-different mode.
 
-   std::string fproj =
 
-     cmStrCat(this->LocalGenerator->GetCurrentBinaryDirectory(), '/',
 
-              this->LocalGenerator->GetTargetDirectory(this->GeneratorTarget),
 
-              '/', this->Name, cmGlobalGhsMultiGenerator::FILE_EXTENSION);
 
-   // Tell the global generator the name of the project file
 
-   this->GeneratorTarget->Target->SetProperty("GENERATOR_FILE_NAME", fproj);
 
-   this->GeneratorTarget->Target->SetProperty(
 
-     "GENERATOR_FILE_NAME_EXT", GhsMultiGpj::GetGpjTag(this->TagType));
 
-   cmGeneratedFileStream fout(fproj);
 
-   fout.SetCopyIfDifferent(true);
 
-   this->GetGlobalGenerator()->WriteFileHeader(fout);
 
-   GhsMultiGpj::WriteGpjTag(this->TagType, fout);
 
-   if (this->TagType != GhsMultiGpj::CUSTOM_TARGET) {
 
-     const std::string language(
 
-       this->GeneratorTarget->GetLinkerLanguage(this->ConfigName));
 
-     this->WriteTargetSpecifics(fout, this->ConfigName);
 
-     this->SetCompilerFlags(this->ConfigName, language);
 
-     this->WriteCompilerFlags(fout, this->ConfigName, language);
 
-     this->WriteCompilerDefinitions(fout, this->ConfigName, language);
 
-     this->WriteIncludes(fout, this->ConfigName, language);
 
-     this->WriteTargetLinkLine(fout, this->ConfigName);
 
-     this->WriteBuildEvents(fout);
 
-   }
 
-   this->WriteSources(fout);
 
-   fout.Close();
 
- }
 
- cmGlobalGhsMultiGenerator* cmGhsMultiTargetGenerator::GetGlobalGenerator()
 
-   const
 
- {
 
-   return static_cast<cmGlobalGhsMultiGenerator*>(
 
-     this->LocalGenerator->GetGlobalGenerator());
 
- }
 
- void cmGhsMultiTargetGenerator::WriteTargetSpecifics(std::ostream& fout,
 
-                                                      const std::string& config)
 
- {
 
-   std::string outpath;
 
-   /* Determine paths from the target project file to where the output artifacts
 
-    * need to be located.
 
-    */
 
-   if (this->TagType != GhsMultiGpj::SUBPROJECT) {
 
-     // set target binary file destination
 
-     std::string binpath = cmStrCat(
 
-       this->LocalGenerator->GetCurrentBinaryDirectory(), '/',
 
-       this->LocalGenerator->GetTargetDirectory(this->GeneratorTarget));
 
-     outpath = cmSystemTools::RelativePath(
 
-       binpath, this->GeneratorTarget->GetDirectory(config));
 
-     /* clang-format off */
 
-     fout << "    :binDirRelative=\"" << outpath << "\"\n"
 
-             "    -o \"" << this->TargetNameReal << "\"\n";
 
-     /* clang-format on */
 
-   }
 
-   // set target object file destination
 
-   outpath = ".";
 
-   fout << "    :outputDirRelative=\"" << outpath << "\"\n";
 
- }
 
- void cmGhsMultiTargetGenerator::SetCompilerFlags(std::string const& config,
 
-                                                  const std::string& language)
 
- {
 
-   auto i = this->FlagsByLanguage.find(language);
 
-   if (i == this->FlagsByLanguage.end()) {
 
-     std::string flags;
 
-     this->LocalGenerator->AddLanguageFlags(
 
-       flags, this->GeneratorTarget, cmBuildStep::Compile, language, config);
 
-     this->LocalGenerator->AddCMP0018Flags(flags, this->GeneratorTarget,
 
-                                           language, config);
 
-     this->LocalGenerator->AddVisibilityPresetFlags(
 
-       flags, this->GeneratorTarget, language);
 
-     this->LocalGenerator->AddColorDiagnosticsFlags(flags, language);
 
-     // Append old-style preprocessor definition flags.
 
-     if (this->Makefile->GetDefineFlags() != " ") {
 
-       this->LocalGenerator->AppendFlags(flags,
 
-                                         this->Makefile->GetDefineFlags());
 
-     }
 
-     // Add target-specific flags.
 
-     this->LocalGenerator->AddCompileOptions(flags, this->GeneratorTarget,
 
-                                             language, config);
 
-     std::map<std::string, std::string>::value_type entry(language, flags);
 
-     i = this->FlagsByLanguage.insert(entry).first;
 
-   }
 
- }
 
- std::string cmGhsMultiTargetGenerator::GetDefines(const std::string& language,
 
-                                                   std::string const& config)
 
- {
 
-   auto i = this->DefinesByLanguage.find(language);
 
-   if (i == this->DefinesByLanguage.end()) {
 
-     std::set<std::string> defines;
 
-     // Add preprocessor definitions for this target and configuration.
 
-     this->LocalGenerator->GetTargetDefines(this->GeneratorTarget, config,
 
-                                            language, defines);
 
-     std::string definesString;
 
-     this->LocalGenerator->JoinDefines(defines, definesString, language);
 
-     std::map<std::string, std::string>::value_type entry(language,
 
-                                                          definesString);
 
-     i = this->DefinesByLanguage.insert(entry).first;
 
-   }
 
-   return i->second;
 
- }
 
- void cmGhsMultiTargetGenerator::WriteCompilerFlags(std::ostream& fout,
 
-                                                    std::string const&,
 
-                                                    const std::string& language)
 
- {
 
-   auto flagsByLangI = this->FlagsByLanguage.find(language);
 
-   if (flagsByLangI != this->FlagsByLanguage.end()) {
 
-     if (!flagsByLangI->second.empty()) {
 
-       std::vector<std::string> ghsCompFlags =
 
-         cmSystemTools::ParseArguments(flagsByLangI->second);
 
-       for (const std::string& f : ghsCompFlags) {
 
-         fout << "    " << f << '\n';
 
-       }
 
-     }
 
-   }
 
- }
 
- void cmGhsMultiTargetGenerator::WriteCompilerDefinitions(
 
-   std::ostream& fout, const std::string& config, const std::string& language)
 
- {
 
-   std::vector<std::string> compileDefinitions;
 
-   this->GeneratorTarget->GetCompileDefinitions(compileDefinitions, config,
 
-                                                language);
 
-   for (std::string const& compileDefinition : compileDefinitions) {
 
-     fout << "    -D" << compileDefinition << '\n';
 
-   }
 
- }
 
- void cmGhsMultiTargetGenerator::WriteIncludes(std::ostream& fout,
 
-                                               const std::string& config,
 
-                                               const std::string& language)
 
- {
 
-   std::vector<std::string> includes;
 
-   this->LocalGenerator->GetIncludeDirectories(includes, this->GeneratorTarget,
 
-                                               language, config);
 
-   for (std::string const& include : includes) {
 
-     fout << "    -I\"" << include << "\"\n";
 
-   }
 
- }
 
- void cmGhsMultiTargetGenerator::WriteTargetLinkLine(std::ostream& fout,
 
-                                                     std::string const& config)
 
- {
 
-   if (this->TagType == GhsMultiGpj::INTERGRITY_APPLICATION) {
 
-     return;
 
-   }
 
-   std::string linkLibraries;
 
-   std::string flags;
 
-   std::string linkFlags;
 
-   std::string frameworkPath;
 
-   std::string linkPath;
 
-   std::unique_ptr<cmLinkLineComputer> linkLineComputer =
 
-     this->GetGlobalGenerator()->CreateLinkLineComputer(
 
-       this->LocalGenerator,
 
-       this->LocalGenerator->GetStateSnapshot().GetDirectory());
 
-   this->LocalGenerator->GetTargetFlags(
 
-     linkLineComputer.get(), config, linkLibraries, flags, linkFlags,
 
-     frameworkPath, linkPath, this->GeneratorTarget);
 
-   // write out link options
 
-   std::vector<std::string> lopts = cmSystemTools::ParseArguments(linkFlags);
 
-   for (const std::string& l : lopts) {
 
-     fout << "    " << l << '\n';
 
-   }
 
-   // write out link search paths
 
-   // must be quoted for paths that contain spaces
 
-   std::vector<std::string> lpath = cmSystemTools::ParseArguments(linkPath);
 
-   for (const std::string& l : lpath) {
 
-     fout << "    -L\"" << l << "\"\n";
 
-   }
 
-   // write out link libs
 
-   // must be quoted for filepaths that contains spaces
 
-   std::string cbd = this->LocalGenerator->GetCurrentBinaryDirectory();
 
-   std::vector<std::string> llibs =
 
-     cmSystemTools::ParseArguments(linkLibraries);
 
-   for (const std::string& l : llibs) {
 
-     if (l.compare(0, 2, "-l") == 0) {
 
-       fout << "    \"" << l << "\"\n";
 
-     } else {
 
-       std::string rl = cmSystemTools::CollapseFullPath(l, cbd);
 
-       fout << "    -l\"" << rl << "\"\n";
 
-     }
 
-   }
 
- }
 
- void cmGhsMultiTargetGenerator::WriteBuildEvents(std::ostream& fout)
 
- {
 
-   this->WriteBuildEventsHelper(fout,
 
-                                this->GeneratorTarget->GetPreBuildCommands(),
 
-                                std::string("prebuild"),
 
- #ifdef _WIN32
 
-                                std::string("preexecShell")
 
- #else
 
-                                std::string("preexec")
 
- #endif
 
-   );
 
-   if (this->TagType != GhsMultiGpj::CUSTOM_TARGET) {
 
-     this->WriteBuildEventsHelper(fout,
 
-                                  this->GeneratorTarget->GetPreLinkCommands(),
 
-                                  std::string("prelink"),
 
- #ifdef _WIN32
 
-                                  std::string("preexecShell")
 
- #else
 
-                                  std::string("preexec")
 
- #endif
 
-     );
 
-   }
 
-   this->WriteBuildEventsHelper(fout,
 
-                                this->GeneratorTarget->GetPostBuildCommands(),
 
-                                std::string("postbuild"),
 
- #ifdef _WIN32
 
-                                std::string("postexecShell")
 
- #else
 
-                                std::string("postexec")
 
- #endif
 
-   );
 
- }
 
- void cmGhsMultiTargetGenerator::WriteBuildEventsHelper(
 
-   std::ostream& fout, const std::vector<cmCustomCommand>& ccv,
 
-   std::string const& name, std::string const& cmd)
 
- {
 
-   int cmdcount = 0;
 
- #ifdef _WIN32
 
-   std::string fext = ".bat";
 
-   std::string shell;
 
- #else
 
-   std::string fext = ".sh";
 
-   std::string shell = "/bin/sh ";
 
- #endif
 
-   for (cmCustomCommand const& cc : ccv) {
 
-     cmCustomCommandGenerator ccg(cc, this->ConfigName, this->LocalGenerator);
 
-     // Open the filestream for this custom command
 
-     std::string fname =
 
-       cmStrCat(this->LocalGenerator->GetCurrentBinaryDirectory(), '/',
 
-                this->LocalGenerator->GetTargetDirectory(this->GeneratorTarget),
 
-                '/', this->Name, '_', name, cmdcount++, fext);
 
-     cmGeneratedFileStream f(fname);
 
-     f.SetCopyIfDifferent(true);
 
-     this->WriteCustomCommandsHelper(f, ccg);
 
-     f.Close();
 
-     if (this->TagType != GhsMultiGpj::CUSTOM_TARGET) {
 
-       fout << "    :" << cmd << "=\"" << shell << fname << "\"\n";
 
-     } else {
 
-       fout << fname << "\n    :outputName=\"" << fname << ".rule\"\n";
 
-     }
 
-     for (const auto& byp : ccg.GetByproducts()) {
 
-       fout << "    :extraOutputFile=\"" << byp << "\"\n";
 
-     }
 
-   }
 
- }
 
- void cmGhsMultiTargetGenerator::WriteCustomCommandsHelper(
 
-   std::ostream& fout, cmCustomCommandGenerator const& ccg)
 
- {
 
-   std::vector<std::string> cmdLines;
 
-   // if the command specified a working directory use it.
 
-   std::string dir = this->LocalGenerator->GetCurrentBinaryDirectory();
 
-   std::string workingDir = ccg.GetWorkingDirectory();
 
-   if (!workingDir.empty()) {
 
-     dir = workingDir;
 
-   }
 
-   // Line to check for error between commands.
 
- #ifdef _WIN32
 
-   std::string check_error = "if %errorlevel% neq 0 exit /b %errorlevel%";
 
- #else
 
-   std::string check_error = "if [ $? -ne 0 ]; then exit 1; fi";
 
- #endif
 
- #ifdef _WIN32
 
-   cmdLines.push_back("@echo off");
 
- #endif
 
-   // Echo the custom command's comment text.
 
-   if (cm::optional<std::string> comment = ccg.GetComment()) {
 
-     std::string echocmd = cmStrCat("echo ", *comment);
 
-     cmdLines.push_back(std::move(echocmd));
 
-   }
 
-   // Switch to working directory
 
-   std::string cdCmd;
 
- #ifdef _WIN32
 
-   std::string cdStr = "cd /D ";
 
- #else
 
-   std::string cdStr = "cd ";
 
- #endif
 
-   cdCmd = cdStr +
 
-     this->LocalGenerator->ConvertToOutputFormat(dir, cmOutputConverter::SHELL);
 
-   cmdLines.push_back(std::move(cdCmd));
 
-   for (unsigned int c = 0; c < ccg.GetNumberOfCommands(); ++c) {
 
-     // Build the command line in a single string.
 
-     std::string cmd = ccg.GetCommand(c);
 
-     if (!cmd.empty()) {
 
-       // Use "call " before any invocations of .bat or .cmd files
 
-       // invoked as custom commands in the WindowsShell.
 
-       //
 
-       bool useCall = false;
 
- #ifdef _WIN32
 
-       std::string suffix;
 
-       if (cmd.size() > 4) {
 
-         suffix = cmSystemTools::LowerCase(cmd.substr(cmd.size() - 4));
 
-         if (suffix == ".bat" || suffix == ".cmd") {
 
-           useCall = true;
 
-         }
 
-       }
 
- #endif
 
-       cmSystemTools::ReplaceString(cmd, "/./", "/");
 
-       // Convert the command to a relative path only if the current
 
-       // working directory will be the start-output directory.
 
-       bool had_slash = cmd.find('/') != std::string::npos;
 
-       if (workingDir.empty()) {
 
-         cmd = this->LocalGenerator->MaybeRelativeToCurBinDir(cmd);
 
-       }
 
-       bool has_slash = cmd.find('/') != std::string::npos;
 
-       if (had_slash && !has_slash) {
 
-         // This command was specified as a path to a file in the
 
-         // current directory.  Add a leading "./" so it can run
 
-         // without the current directory being in the search path.
 
-         cmd = cmStrCat("./", cmd);
 
-       }
 
-       cmd = this->LocalGenerator->ConvertToOutputFormat(
 
-         cmd, cmOutputConverter::SHELL);
 
-       if (useCall) {
 
-         cmd = cmStrCat("call ", cmd);
 
-       }
 
-       ccg.AppendArguments(c, cmd);
 
-       cmdLines.push_back(std::move(cmd));
 
-     }
 
-   }
 
-   // push back the custom commands
 
-   for (auto const& c : cmdLines) {
 
-     fout << c << '\n' << check_error << '\n';
 
-   }
 
- }
 
- void cmGhsMultiTargetGenerator::WriteSourceProperty(
 
-   std::ostream& fout, const cmSourceFile* sf, std::string const& propName,
 
-   std::string const& propFlag)
 
- {
 
-   cmValue prop = sf->GetProperty(propName);
 
-   if (prop) {
 
-     cmList list{ *prop };
 
-     for (const std::string& p : list) {
 
-       fout << "    " << propFlag << p << '\n';
 
-     }
 
-   }
 
- }
 
- void cmGhsMultiTargetGenerator::WriteSources(std::ostream& fout_proj)
 
- {
 
-   /* vector of all sources for this target */
 
-   std::vector<cmSourceFile*> sources;
 
-   this->GeneratorTarget->GetSourceFiles(sources, this->ConfigName);
 
-   /* vector of all groups defined for this target
 
-    * -- but the vector is not expanded with sub groups or in any useful order
 
-    */
 
-   std::vector<cmSourceGroup> sourceGroups = this->Makefile->GetSourceGroups();
 
-   /* for each source file assign it to its group */
 
-   std::map<std::string, std::vector<cmSourceFile*>> groupFiles;
 
-   std::set<std::string> groupNames;
 
-   for (cmSourceFile* sf : sources) {
 
-     cmSourceGroup* sourceGroup =
 
-       this->Makefile->FindSourceGroup(sf->ResolveFullPath(), sourceGroups);
 
-     std::string gn = sourceGroup->GetFullName();
 
-     groupFiles[gn].push_back(sf);
 
-     groupNames.insert(std::move(gn));
 
-   }
 
-   /* list of known groups and the order they are displayed in a project file */
 
-   const std::vector<std::string> standardGroups = {
 
-     "CMake Rules",  "Header Files",     "Source Files",
 
-     "Object Files", "Object Libraries", "Resources"
 
-   };
 
-   /* list of groups in the order they are displayed in a project file*/
 
-   std::vector<std::string> groupFilesList(groupFiles.size());
 
-   /* put the groups in the order they should be listed
 
-    * - standard groups first, and then everything else
 
-    *   in the order used by std::map.
 
-    */
 
-   int i = 0;
 
-   for (const std::string& gn : standardGroups) {
 
-     auto n = groupNames.find(gn);
 
-     if (n != groupNames.end()) {
 
-       groupFilesList[i] = *n;
 
-       i += 1;
 
-       groupNames.erase(gn);
 
-     } else if (this->TagType == GhsMultiGpj::CUSTOM_TARGET &&
 
-                gn == "CMake Rules") {
 
-       /* make sure that rules folder always exists in case of custom targets
 
-        * that have no custom commands except for pre or post build events.
 
-        */
 
-       groupFilesList.resize(groupFilesList.size() + 1);
 
-       groupFilesList[i] = gn;
 
-       i += 1;
 
-     }
 
-   }
 
-   { /* catch-all group - is last item */
 
-     std::string gn;
 
-     auto n = groupNames.find(gn);
 
-     if (n != groupNames.end()) {
 
-       groupFilesList.back() = *n;
 
-       groupNames.erase(gn);
 
-     }
 
-   }
 
-   for (const auto& n : groupNames) {
 
-     groupFilesList[i] = n;
 
-     i += 1;
 
-   }
 
-   /* sort the files within each group */
 
-   for (auto& n : groupFilesList) {
 
-     std::sort(groupFiles[n].begin(), groupFiles[n].end(),
 
-               [](cmSourceFile* l, cmSourceFile* r) {
 
-                 return l->ResolveFullPath() < r->ResolveFullPath();
 
-               });
 
-   }
 
-   /* list of open project files */
 
-   std::vector<cmGeneratedFileStream*> gfiles;
 
-   /* write files into the proper project file
 
-    * -- groups go into main project file
 
-    *    unless NO_SOURCE_GROUP_FILE property or variable is set.
 
-    */
 
-   for (auto& sg : groupFilesList) {
 
-     std::ostream* fout;
 
-     bool useProjectFile =
 
-       cmIsOn(this->GeneratorTarget->GetProperty("GHS_NO_SOURCE_GROUP_FILE")) ||
 
-       this->Makefile->IsOn("CMAKE_GHS_NO_SOURCE_GROUP_FILE");
 
-     if (useProjectFile || sg.empty()) {
 
-       fout = &fout_proj;
 
-     } else {
 
-       // Open the filestream in copy-if-different mode.
 
-       std::string gname = sg;
 
-       cmsys::SystemTools::ReplaceString(gname, "\\", "_");
 
-       std::string lpath =
 
-         cmStrCat(gname, cmGlobalGhsMultiGenerator::FILE_EXTENSION);
 
-       std::string fpath = cmStrCat(
 
-         this->LocalGenerator->GetCurrentBinaryDirectory(), '/',
 
-         this->LocalGenerator->GetTargetDirectory(this->GeneratorTarget), '/',
 
-         lpath);
 
-       cmGeneratedFileStream* f = new cmGeneratedFileStream(fpath);
 
-       f->SetCopyIfDifferent(true);
 
-       gfiles.push_back(f);
 
-       fout = f;
 
-       this->GetGlobalGenerator()->WriteFileHeader(*f);
 
-       GhsMultiGpj::WriteGpjTag(GhsMultiGpj::SUBPROJECT, *f);
 
-       fout_proj << lpath << " ";
 
-       GhsMultiGpj::WriteGpjTag(GhsMultiGpj::SUBPROJECT, fout_proj);
 
-     }
 
-     if (useProjectFile) {
 
-       if (sg.empty()) {
 
-         *fout << "{comment} Others" << '\n';
 
-       } else {
 
-         *fout << "{comment} " << sg << '\n';
 
-       }
 
-     } else if (sg.empty()) {
 
-       *fout << "{comment} Others\n";
 
-     }
 
-     if (sg != "CMake Rules") {
 
-       /* output rule for each source file */
 
-       for (const cmSourceFile* si : groupFiles[sg]) {
 
-         bool compile = true;
 
-         // Convert filename to native system
 
-         // WORKAROUND: GHS MULTI 6.1.4 and 6.1.6 are known to need backslash on
 
-         // windows when opening some files from the search window.
 
-         std::string fname(si->GetFullPath());
 
-         cmSystemTools::ConvertToOutputSlashes(fname);
 
-         /* For custom targets list any associated sources,
 
-          * comment out source code to prevent it from being
 
-          * compiled when processing this target.
 
-          * Otherwise, comment out any custom command (main) dependencies that
 
-          * are listed as source files to prevent them from being considered
 
-          * part of the build.
 
-          */
 
-         std::string comment;
 
-         if ((this->TagType == GhsMultiGpj::CUSTOM_TARGET &&
 
-              !si->GetLanguage().empty()) ||
 
-             si->GetCustomCommand()) {
 
-           comment = "{comment} ";
 
-           compile = false;
 
-         }
 
-         *fout << comment << fname << WriteObjectLangOverride(si) << '\n';
 
-         if (compile) {
 
-           this->WriteSourceProperty(*fout, si, "INCLUDE_DIRECTORIES", "-I");
 
-           this->WriteSourceProperty(*fout, si, "COMPILE_DEFINITIONS", "-D");
 
-           this->WriteSourceProperty(*fout, si, "COMPILE_OPTIONS", "");
 
-           /* to avoid clutter in the GUI only print out the objectName if it
 
-            * has been renamed */
 
-           std::string objectName = this->GeneratorTarget->GetObjectName(si);
 
-           if (!objectName.empty() &&
 
-               this->GeneratorTarget->HasExplicitObjectName(si)) {
 
-             *fout << "    -o " << objectName << '\n';
 
-           }
 
-         }
 
-       }
 
-     } else {
 
-       std::vector<cmSourceFile const*> customCommands;
 
-       if (this->ComputeCustomCommandOrder(customCommands)) {
 
-         std::string message = "The custom commands for target [" +
 
-           this->GeneratorTarget->GetName() + "] had a cycle.\n";
 
-         cmSystemTools::Error(message);
 
-       } else {
 
-         /* Custom targets do not have a dependency on SOURCES files.
 
-          * Therefore the dependency list may include SOURCES files after the
 
-          * custom target. Because nothing can depend on the custom target just
 
-          * move it to the last item.
 
-          */
 
-         for (auto sf = customCommands.begin(); sf != customCommands.end();
 
-              ++sf) {
 
-           if (((*sf)->GetLocation()).GetName() == this->Name + ".rule") {
 
-             std::rotate(sf, sf + 1, customCommands.end());
 
-             break;
 
-           }
 
-         }
 
-         int cmdcount = 0;
 
- #ifdef _WIN32
 
-         std::string fext = ".bat";
 
- #else
 
-         std::string fext = ".sh";
 
- #endif
 
-         for (auto& sf : customCommands) {
 
-           const cmCustomCommand* cc = sf->GetCustomCommand();
 
-           cmCustomCommandGenerator ccg(*cc, this->ConfigName,
 
-                                        this->LocalGenerator);
 
-           // Open the filestream for this custom command
 
-           std::string fname = cmStrCat(
 
-             this->LocalGenerator->GetCurrentBinaryDirectory(), '/',
 
-             this->LocalGenerator->GetTargetDirectory(this->GeneratorTarget),
 
-             '/', this->Name, "_cc", cmdcount++, '_',
 
-             (sf->GetLocation()).GetName(), fext);
 
-           cmGeneratedFileStream f(fname);
 
-           f.SetCopyIfDifferent(true);
 
-           this->WriteCustomCommandsHelper(f, ccg);
 
-           f.Close();
 
-           this->WriteCustomCommandLine(*fout, fname, ccg);
 
-         }
 
-       }
 
-       if (this->TagType == GhsMultiGpj::CUSTOM_TARGET) {
 
-         this->WriteBuildEvents(*fout);
 
-       }
 
-     }
 
-   }
 
-   for (cmGeneratedFileStream* f : gfiles) {
 
-     f->Close();
 
-   }
 
- }
 
- void cmGhsMultiTargetGenerator::WriteCustomCommandLine(
 
-   std::ostream& fout, std::string& fname, cmCustomCommandGenerator const& ccg)
 
- {
 
-   /* NOTE: Customization Files are not well documented.  Testing showed
 
-    * that ":outputName=file" can only be used once per script.  The
 
-    * script will only run if ":outputName=file" is missing or just run
 
-    * once if ":outputName=file" is not specified.  If there are
 
-    * multiple outputs then the script needs to be listed multiple times
 
-    * for each output.  Otherwise it won't rerun the script if one of
 
-    * the outputs is manually deleted.
 
-    */
 
-   bool specifyExtra = true;
 
-   for (const auto& out : ccg.GetOutputs()) {
 
-     fout << fname << '\n';
 
-     fout << "    :outputName=\"" << out << "\"\n";
 
-     if (specifyExtra) {
 
-       for (const auto& byp : ccg.GetByproducts()) {
 
-         fout << "    :extraOutputFile=\"" << byp << "\"\n";
 
-       }
 
-       for (const auto& dep : ccg.GetDepends()) {
 
-         fout << "    :depends=\"" << dep << "\"\n";
 
-       }
 
-       specifyExtra = false;
 
-     }
 
-   }
 
- }
 
- std::string cmGhsMultiTargetGenerator::WriteObjectLangOverride(
 
-   const cmSourceFile* sourceFile)
 
- {
 
-   std::string ret;
 
-   cmValue rawLangProp = sourceFile->GetProperty("LANGUAGE");
 
-   if (rawLangProp) {
 
-     ret = cmStrCat(" [", *rawLangProp, "]");
 
-   }
 
-   return ret;
 
- }
 
- bool cmGhsMultiTargetGenerator::DetermineIfIntegrityApp()
 
- {
 
-   if (cmValue p = this->GeneratorTarget->GetProperty("ghs_integrity_app")) {
 
-     return cmIsOn(*p);
 
-   }
 
-   std::vector<cmSourceFile*> sources;
 
-   this->GeneratorTarget->GetSourceFiles(sources, this->ConfigName);
 
-   return std::any_of(sources.begin(), sources.end(),
 
-                      [](cmSourceFile const* sf) -> bool {
 
-                        return "int" == sf->GetExtension();
 
-                      });
 
- }
 
- bool cmGhsMultiTargetGenerator::ComputeCustomCommandOrder(
 
-   std::vector<cmSourceFile const*>& order)
 
- {
 
-   std::set<cmSourceFile const*> temp;
 
-   std::set<cmSourceFile const*> perm;
 
-   // Collect all custom commands for this target
 
-   std::vector<cmSourceFile const*> customCommands;
 
-   this->GeneratorTarget->GetCustomCommands(customCommands, this->ConfigName);
 
-   for (cmSourceFile const* si : customCommands) {
 
-     bool r = this->VisitCustomCommand(temp, perm, order, si);
 
-     if (r) {
 
-       return r;
 
-     }
 
-   }
 
-   return false;
 
- }
 
- bool cmGhsMultiTargetGenerator::VisitCustomCommand(
 
-   std::set<cmSourceFile const*>& temp, std::set<cmSourceFile const*>& perm,
 
-   std::vector<cmSourceFile const*>& order, cmSourceFile const* si)
 
- {
 
-   /* check if permanent mark is set*/
 
-   if (perm.find(si) == perm.end()) {
 
-     /* set temporary mark; check if revisit*/
 
-     if (temp.insert(si).second) {
 
-       for (const auto& di : si->GetCustomCommand()->GetDepends()) {
 
-         cmSourceFile const* sf =
 
-           this->GeneratorTarget->GetLocalGenerator()->GetSourceFileWithOutput(
 
-             di);
 
-         /* if sf exists then visit */
 
-         if (sf && this->VisitCustomCommand(temp, perm, order, sf)) {
 
-           return true;
 
-         }
 
-       }
 
-       /* mark as complete; insert into beginning of list*/
 
-       perm.insert(si);
 
-       order.push_back(si);
 
-       return false;
 
-     }
 
-     /* revisiting item - not a DAG */
 
-     return true;
 
-   }
 
-   /* already complete */
 
-   return false;
 
- }
 
 
  |