| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
- file Copyright.txt or https://cmake.org/licensing for details. */
- #include "cmCTestBuildCommand.h"
- #include <cstring>
- #include <sstream>
- #include <cmext/string_view>
- #include "cmCTest.h"
- #include "cmCTestBuildHandler.h"
- #include "cmGlobalGenerator.h"
- #include "cmMakefile.h"
- #include "cmMessageType.h"
- #include "cmProperty.h"
- #include "cmStringAlgorithms.h"
- #include "cmSystemTools.h"
- #include "cmake.h"
- class cmExecutionStatus;
- void cmCTestBuildCommand::BindArguments()
- {
- this->cmCTestHandlerCommand::BindArguments();
- this->Bind("NUMBER_ERRORS"_s, this->NumberErrors);
- this->Bind("NUMBER_WARNINGS"_s, this->NumberWarnings);
- this->Bind("TARGET"_s, this->Target);
- this->Bind("CONFIGURATION"_s, this->Configuration);
- this->Bind("FLAGS"_s, this->Flags);
- this->Bind("PROJECT_NAME"_s, this->ProjectName);
- }
- cmCTestBuildCommand::~cmCTestBuildCommand() = default;
- cmCTestGenericHandler* cmCTestBuildCommand::InitializeHandler()
- {
- cmCTestBuildHandler* handler = this->CTest->GetBuildHandler();
- handler->Initialize();
- this->Handler = handler;
- cmProp ctestBuildCommand = this->Makefile->GetDef("CTEST_BUILD_COMMAND");
- if (cmNonempty(ctestBuildCommand)) {
- this->CTest->SetCTestConfiguration("MakeCommand", *ctestBuildCommand,
- this->Quiet);
- } else {
- const char* cmakeGeneratorName =
- this->Makefile->GetDefinition("CTEST_CMAKE_GENERATOR");
- // Build configuration is determined by: CONFIGURATION argument,
- // or CTEST_BUILD_CONFIGURATION script variable, or
- // CTEST_CONFIGURATION_TYPE script variable, or ctest -C command
- // line argument... in that order.
- //
- const char* ctestBuildConfiguration =
- this->Makefile->GetDefinition("CTEST_BUILD_CONFIGURATION");
- const char* cmakeBuildConfiguration = !this->Configuration.empty()
- ? this->Configuration.c_str()
- : ((ctestBuildConfiguration && *ctestBuildConfiguration)
- ? ctestBuildConfiguration
- : this->CTest->GetConfigType().c_str());
- const char* cmakeBuildAdditionalFlags = !this->Flags.empty()
- ? this->Flags.c_str()
- : this->Makefile->GetDefinition("CTEST_BUILD_FLAGS");
- const char* cmakeBuildTarget = !this->Target.empty()
- ? this->Target.c_str()
- : this->Makefile->GetDefinition("CTEST_BUILD_TARGET");
- if (cmakeGeneratorName && *cmakeGeneratorName) {
- if (!cmakeBuildConfiguration) {
- cmakeBuildConfiguration = "Release";
- }
- if (this->GlobalGenerator) {
- if (this->GlobalGenerator->GetName() != cmakeGeneratorName) {
- this->GlobalGenerator.reset();
- }
- }
- if (!this->GlobalGenerator) {
- this->GlobalGenerator =
- this->Makefile->GetCMakeInstance()->CreateGlobalGenerator(
- cmakeGeneratorName);
- if (!this->GlobalGenerator) {
- std::string e = cmStrCat("could not create generator named \"",
- cmakeGeneratorName, '"');
- this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e);
- cmSystemTools::SetFatalErrorOccured();
- return nullptr;
- }
- }
- if (strlen(cmakeBuildConfiguration) == 0) {
- const char* config = nullptr;
- #ifdef CMAKE_INTDIR
- config = CMAKE_INTDIR;
- #endif
- if (!config) {
- config = "Debug";
- }
- cmakeBuildConfiguration = config;
- }
- std::string dir = this->CTest->GetCTestConfiguration("BuildDirectory");
- std::string buildCommand =
- this->GlobalGenerator->GenerateCMakeBuildCommand(
- cmakeBuildTarget ? cmakeBuildTarget : "", cmakeBuildConfiguration,
- cmakeBuildAdditionalFlags ? cmakeBuildAdditionalFlags : "",
- this->Makefile->IgnoreErrorsCMP0061());
- cmCTestOptionalLog(this->CTest, HANDLER_VERBOSE_OUTPUT,
- "SetMakeCommand:" << buildCommand << "\n",
- this->Quiet);
- this->CTest->SetCTestConfiguration("MakeCommand", buildCommand,
- this->Quiet);
- } else {
- std::ostringstream ostr;
- /* clang-format off */
- ostr << "has no project to build. If this is a "
- "\"built with CMake\" project, verify that CTEST_CMAKE_GENERATOR "
- "is set. Otherwise, set CTEST_BUILD_COMMAND to build the project "
- "with a custom command line.";
- /* clang-format on */
- this->SetError(ostr.str());
- return nullptr;
- }
- }
- if (cmProp useLaunchers = this->Makefile->GetDef("CTEST_USE_LAUNCHERS")) {
- this->CTest->SetCTestConfiguration("UseLaunchers", *useLaunchers,
- this->Quiet);
- }
- if (cmProp labelsForSubprojects =
- this->Makefile->GetDef("CTEST_LABELS_FOR_SUBPROJECTS")) {
- this->CTest->SetCTestConfiguration("LabelsForSubprojects",
- *labelsForSubprojects, this->Quiet);
- }
- handler->SetQuiet(this->Quiet);
- return handler;
- }
- bool cmCTestBuildCommand::InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus& status)
- {
- bool ret = cmCTestHandlerCommand::InitialPass(args, status);
- if (!this->NumberErrors.empty()) {
- this->Makefile->AddDefinition(
- this->NumberErrors, std::to_string(this->Handler->GetTotalErrors()));
- }
- if (!this->NumberWarnings.empty()) {
- this->Makefile->AddDefinition(
- this->NumberWarnings, std::to_string(this->Handler->GetTotalWarnings()));
- }
- return ret;
- }
|