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
|
2012-08-13 21:42:58 +04:00
|
|
|
bool cmQTWrapCPPCommand::InitialPass(std::vector<std::string> const& argsIn,
|
2008-01-23 18:28:26 +03:00
|
|
|
cmExecutionStatus &)
|
2001-10-15 22:19:53 +04:00
|
|
|
{
|
2002-03-29 22:20:32 +03:00
|
|
|
if(argsIn.size() < 3 )
|
2001-10-15 22:19:53 +04:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
|
|
|
|
// This command supports source list inputs for compatibility.
|
2002-03-29 22:20:32 +03:00
|
|
|
std::vector<std::string> args;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->ExpandSourceListArguments(argsIn, args, 2);
|
2001-10-15 22:19:53 +04: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];
|
|
|
|
std::string sourceListValue =
|
|
|
|
this->Makefile->GetSafeDefinition(sourceList.c_str());
|
2002-06-30 04:04:28 +04:00
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
// Create a rule for all sources listed.
|
2002-06-27 23:57:09 +04:00
|
|
|
for(std::vector<std::string>::iterator j = (args.begin() + 2);
|
2001-10-15 22:19:53 +04:00
|
|
|
j != args.end(); ++j)
|
2007-06-18 19:59:23 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
cmSourceFile *curr = this->Makefile->GetSource(j->c_str());
|
2002-06-27 23:57:09 +04:00
|
|
|
// if we should wrap the class
|
2007-06-18 19:59:23 +04:00
|
|
|
if(!(curr && curr->GetPropertyAsBool("WRAP_EXCLUDE")))
|
2001-10-15 22:19:53 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
// Compute the name of the file to generate.
|
|
|
|
std::string srcName =
|
|
|
|
cmSystemTools::GetFilenameWithoutLastExtension(*j);
|
|
|
|
std::string newName = this->Makefile->GetCurrentOutputDirectory();
|
|
|
|
newName += "/moc_";
|
|
|
|
newName += srcName;
|
|
|
|
newName += ".cxx";
|
|
|
|
cmSourceFile* sf =
|
|
|
|
this->Makefile->GetOrCreateSource(newName.c_str(), true);
|
2002-06-27 23:57:09 +04:00
|
|
|
if (curr)
|
2001-10-15 22:19:53 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
sf->SetProperty("ABSTRACT", curr->GetProperty("ABSTRACT"));
|
2001-10-15 22:19:53 +04: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;
|
2007-06-18 19:59:23 +04:00
|
|
|
if(cmSystemTools::FileIsFullPath(j->c_str()))
|
2003-09-25 01:50:39 +04:00
|
|
|
{
|
|
|
|
hname = *j;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
if(curr && curr->GetPropertyAsBool("GENERATED"))
|
2003-09-25 01:50:39 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
hname = this->Makefile->GetCurrentOutputDirectory();
|
2003-09-25 01:50:39 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
hname = this->Makefile->GetCurrentDirectory();
|
2003-09-25 01:50:39 +04:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
hname += "/";
|
|
|
|
hname += *j;
|
2003-09-25 01:50:39 +04:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
|
|
|
|
// Append the generated source file to the list.
|
|
|
|
if(!sourceListValue.empty())
|
2002-06-30 04:04:28 +04:00
|
|
|
{
|
|
|
|
sourceListValue += ";";
|
|
|
|
}
|
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);
|
|
|
|
|
|
|
|
const char* no_main_dependency = 0;
|
|
|
|
const char* no_working_dir = 0;
|
|
|
|
this->Makefile->AddCustomCommandToOutput(newName.c_str(),
|
|
|
|
depends,
|
|
|
|
no_main_dependency,
|
|
|
|
commandLines,
|
2007-11-23 19:30:55 +03:00
|
|
|
"Qt Wrapped File",
|
2007-06-18 19:59:23 +04:00
|
|
|
no_working_dir);
|
2001-10-15 22:19:53 +04:00
|
|
|
}
|
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
|
|
|
|
// Store the final list of source files.
|
|
|
|
this->Makefile->AddDefinition(sourceList.c_str(),
|
2006-05-12 21:44:15 +04:00
|
|
|
sourceListValue.c_str());
|
2001-10-15 22:19:53 +04:00
|
|
|
return true;
|
|
|
|
}
|