2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-10-15 22:19:53 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-10-15 22:19:53 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2001-10-15 22:19:53 +04:00
|
|
|
#include "cmQTWrapCPPCommand.h"
|
|
|
|
|
|
|
|
// cmQTWrapCPPCommand
|
2015-01-18 19:10:03 +03:00
|
|
|
bool cmQTWrapCPPCommand::InitialPass(std::vector<std::string> const& args,
|
2016-05-16 17:34:04 +03:00
|
|
|
cmExecutionStatus&)
|
2001-10-15 22:19:53 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args.size() < 3) {
|
2001-10-15 22:19:53 +04:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
|
|
|
|
// Get the moc executable to run in the custom command.
|
|
|
|
const char* moc_exe =
|
|
|
|
this->Makefile->GetRequiredDefinition("QT_MOC_EXECUTABLE");
|
2002-06-30 04:04:28 +04:00
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
// Get the variable holding the list of sources.
|
|
|
|
std::string const& sourceList = args[1];
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string sourceListValue = this->Makefile->GetSafeDefinition(sourceList);
|
2002-06-30 04:04:28 +04:00
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
// Create a rule for all sources listed.
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator j = (args.begin() + 2);
|
|
|
|
j != args.end(); ++j) {
|
|
|
|
cmSourceFile* curr = this->Makefile->GetSource(*j);
|
2002-06-27 23:57:09 +04:00
|
|
|
// if we should wrap the class
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!(curr && curr->GetPropertyAsBool("WRAP_EXCLUDE"))) {
|
2007-06-18 19:59:23 +04:00
|
|
|
// Compute the name of the file to generate.
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string srcName = cmSystemTools::GetFilenameWithoutLastExtension(*j);
|
2015-04-16 22:33:09 +03:00
|
|
|
std::string newName = this->Makefile->GetCurrentBinaryDirectory();
|
2007-06-18 19:59:23 +04:00
|
|
|
newName += "/moc_";
|
|
|
|
newName += srcName;
|
|
|
|
newName += ".cxx";
|
2016-05-16 17:34:04 +03:00
|
|
|
cmSourceFile* sf = this->Makefile->GetOrCreateSource(newName, true);
|
|
|
|
if (curr) {
|
2007-06-18 19:59:23 +04:00
|
|
|
sf->SetProperty("ABSTRACT", curr->GetProperty("ABSTRACT"));
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
|
|
|
|
// Compute the name of the header from which to generate the file.
|
2003-09-25 01:50:39 +04:00
|
|
|
std::string hname;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::FileIsFullPath(j->c_str())) {
|
2003-09-25 01:50:39 +04:00
|
|
|
hname = *j;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
|
|
|
if (curr && curr->GetPropertyAsBool("GENERATED")) {
|
2015-04-16 22:33:09 +03:00
|
|
|
hname = this->Makefile->GetCurrentBinaryDirectory();
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2015-04-16 22:17:41 +03:00
|
|
|
hname = this->Makefile->GetCurrentSourceDirectory();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
hname += "/";
|
|
|
|
hname += *j;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
|
|
|
|
// Append the generated source file to the list.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!sourceListValue.empty()) {
|
2002-06-30 04:04:28 +04:00
|
|
|
sourceListValue += ";";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-06-18 19:59:23 +04: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;
|
|
|
|
commandLines.push_back(commandLine);
|
|
|
|
|
|
|
|
std::vector<std::string> depends;
|
|
|
|
depends.push_back(moc_exe);
|
|
|
|
depends.push_back(hname);
|
|
|
|
|
2014-02-25 05:32:55 +04:00
|
|
|
std::string no_main_dependency = "";
|
2016-06-27 23:44:16 +03:00
|
|
|
const char* no_working_dir = CM_NULLPTR;
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Makefile->AddCustomCommandToOutput(
|
|
|
|
newName, depends, no_main_dependency, commandLines, "Qt Wrapped File",
|
|
|
|
no_working_dir);
|
2001-10-15 22:19:53 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
|
|
|
|
// Store the final list of source files.
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Makefile->AddDefinition(sourceList, sourceListValue.c_str());
|
2001-10-15 22:19:53 +04:00
|
|
|
return true;
|
|
|
|
}
|