cmake/Source/cmQTWrapCPPCommand.cxx

94 lines
3.0 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmQTWrapCPPCommand.h"
2017-04-14 19:02:05 +02:00
#include "cmCustomCommandLines.h"
#include "cmMakefile.h"
#include "cmSourceFile.h"
#include "cmSystemTools.h"
2018-04-23 21:13:27 +02:00
#include <utility>
2017-04-14 19:02:05 +02:00
class cmExecutionStatus;
// cmQTWrapCPPCommand
2015-08-17 11:37:30 +02:00
bool cmQTWrapCPPCommand::InitialPass(std::vector<std::string> const& args,
2016-07-09 11:21:54 +02:00
cmExecutionStatus&)
{
2016-07-09 11:21:54 +02:00
if (args.size() < 3) {
this->SetError("called with incorrect number of arguments");
return false;
2016-07-09 11:21:54 +02:00
}
// Get the moc executable to run in the custom command.
const char* moc_exe =
this->Makefile->GetRequiredDefinition("QT_MOC_EXECUTABLE");
// Get the variable holding the list of sources.
std::string const& sourceList = args[1];
2016-07-09 11:21:54 +02:00
std::string sourceListValue = this->Makefile->GetSafeDefinition(sourceList);
// Create a rule for all sources listed.
2016-07-09 11:21:54 +02:00
for (std::vector<std::string>::const_iterator j = (args.begin() + 2);
j != args.end(); ++j) {
cmSourceFile* curr = this->Makefile->GetSource(*j);
// if we should wrap the class
2016-07-09 11:21:54 +02:00
if (!(curr && curr->GetPropertyAsBool("WRAP_EXCLUDE"))) {
// Compute the name of the file to generate.
2016-07-09 11:21:54 +02:00
std::string srcName = cmSystemTools::GetFilenameWithoutLastExtension(*j);
2015-08-17 11:37:30 +02:00
std::string newName = this->Makefile->GetCurrentBinaryDirectory();
newName += "/moc_";
newName += srcName;
newName += ".cxx";
2016-07-09 11:21:54 +02:00
cmSourceFile* sf = this->Makefile->GetOrCreateSource(newName, true);
if (curr) {
sf->SetProperty("ABSTRACT", curr->GetProperty("ABSTRACT"));
2016-07-09 11:21:54 +02:00
}
// Compute the name of the header from which to generate the file.
std::string hname;
2018-04-23 21:13:27 +02:00
if (cmSystemTools::FileIsFullPath(*j)) {
hname = *j;
2016-07-09 11:21:54 +02:00
} else {
if (curr && curr->GetPropertyAsBool("GENERATED")) {
2015-08-17 11:37:30 +02:00
hname = this->Makefile->GetCurrentBinaryDirectory();
2016-07-09 11:21:54 +02:00
} else {
2015-08-17 11:37:30 +02:00
hname = this->Makefile->GetCurrentSourceDirectory();
2016-07-09 11:21:54 +02:00
}
hname += "/";
hname += *j;
2016-07-09 11:21:54 +02:00
}
// Append the generated source file to the list.
2016-07-09 11:21:54 +02:00
if (!sourceListValue.empty()) {
sourceListValue += ";";
2016-07-09 11:21:54 +02:00
}
sourceListValue += newName;
// Create the custom command to generate the file.
cmCustomCommandLine commandLine;
commandLine.push_back(moc_exe);
commandLine.push_back("-o");
commandLine.push_back(newName);
commandLine.push_back(hname);
cmCustomCommandLines commandLines;
2018-04-23 21:13:27 +02:00
commandLines.push_back(std::move(commandLine));
std::vector<std::string> depends;
depends.push_back(moc_exe);
depends.push_back(hname);
2017-04-14 19:02:05 +02:00
std::string no_main_dependency;
2018-01-26 17:06:56 +01:00
const char* no_working_dir = nullptr;
2016-07-09 11:21:54 +02:00
this->Makefile->AddCustomCommandToOutput(
newName, depends, no_main_dependency, commandLines, "Qt Wrapped File",
no_working_dir);
}
2016-07-09 11:21:54 +02:00
}
// Store the final list of source files.
2016-07-09 11:21:54 +02:00
this->Makefile->AddDefinition(sourceList, sourceListValue.c_str());
return true;
}