2001-10-15 22:19:53 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-10-15 22:19:53 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-10-15 22:19:53 +04:00
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-10-15 22:19:53 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmQTWrapCPPCommand.h"
|
|
|
|
|
|
|
|
// cmQTWrapCPPCommand
|
2002-03-29 22:20:32 +03:00
|
|
|
bool cmQTWrapCPPCommand::InitialPass(std::vector<std::string> const& argsIn)
|
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;
|
|
|
|
}
|
2002-03-29 22:20:32 +03:00
|
|
|
std::vector<std::string> args;
|
2002-06-27 23:57:09 +04:00
|
|
|
m_Makefile->ExpandSourceListArguments(argsIn, args, 2);
|
2001-10-15 22:19:53 +04:00
|
|
|
|
|
|
|
// what is the current source dir
|
|
|
|
std::string cdir = m_Makefile->GetCurrentDirectory();
|
|
|
|
|
|
|
|
// keep the library name
|
|
|
|
m_LibraryName = args[0];
|
|
|
|
m_SourceList = args[1];
|
|
|
|
|
2002-06-30 04:04:28 +04:00
|
|
|
std::string sourceListValue;
|
|
|
|
|
|
|
|
// was the list already populated
|
|
|
|
const char *def = m_Makefile->GetDefinition(m_SourceList.c_str());
|
|
|
|
if (def)
|
|
|
|
{
|
|
|
|
sourceListValue = def;
|
|
|
|
}
|
|
|
|
|
2001-10-15 22:19:53 +04:00
|
|
|
// get the list of classes for this library
|
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)
|
|
|
|
{
|
2002-06-27 23:57:09 +04:00
|
|
|
cmSourceFile *curr = m_Makefile->GetSource(j->c_str());
|
|
|
|
|
|
|
|
// if we should wrap the class
|
2002-08-16 19:20:18 +04:00
|
|
|
if (!curr || !curr->GetPropertyAsBool("WRAP_EXCLUDE"))
|
2001-10-15 22:19:53 +04:00
|
|
|
{
|
2002-06-27 23:57:09 +04:00
|
|
|
cmSourceFile file;
|
|
|
|
if (curr)
|
2001-10-15 22:19:53 +04:00
|
|
|
{
|
2002-08-16 19:20:18 +04:00
|
|
|
file.SetProperty("ABSTRACT",curr->GetProperty("ABSTRACT"));
|
2001-10-15 22:19:53 +04:00
|
|
|
}
|
2005-08-01 17:24:40 +04:00
|
|
|
std::string srcName = cmSystemTools::GetFilenameWithoutLastExtension(*j);
|
2002-06-27 23:57:09 +04:00
|
|
|
std::string newName = "moc_" + srcName;
|
|
|
|
file.SetName(newName.c_str(), m_Makefile->GetCurrentOutputDirectory(),
|
|
|
|
"cxx",false);
|
2003-09-25 01:50:39 +04:00
|
|
|
std::string hname;
|
|
|
|
if ( (*j)[0] == '/' || (*j)[1] == ':' )
|
|
|
|
{
|
|
|
|
hname = *j;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( curr && curr->GetPropertyAsBool("GENERATED") )
|
|
|
|
{
|
|
|
|
hname = std::string( m_Makefile->GetCurrentOutputDirectory() ) + "/" + *j;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hname = cdir + "/" + *j;
|
|
|
|
}
|
|
|
|
}
|
2002-06-27 23:57:09 +04:00
|
|
|
m_WrapHeaders.push_back(hname);
|
|
|
|
// add starting depends
|
|
|
|
file.GetDepends().push_back(hname);
|
|
|
|
m_WrapClasses.push_back(file);
|
2002-06-30 04:04:28 +04:00
|
|
|
if (sourceListValue.size() > 0)
|
|
|
|
{
|
|
|
|
sourceListValue += ";";
|
|
|
|
}
|
|
|
|
sourceListValue += newName + ".cxx";
|
2001-10-15 22:19:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-30 04:04:28 +04:00
|
|
|
m_Makefile->AddDefinition(m_SourceList.c_str(), sourceListValue.c_str());
|
2001-10-15 22:19:53 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmQTWrapCPPCommand::FinalPass()
|
|
|
|
{
|
2001-11-06 23:29:03 +03:00
|
|
|
|
|
|
|
// first we add the rules for all the .h to Moc files
|
2002-03-13 18:25:11 +03:00
|
|
|
size_t lastClass = m_WrapClasses.size();
|
2001-10-15 22:19:53 +04:00
|
|
|
std::vector<std::string> depends;
|
2005-02-22 18:32:44 +03:00
|
|
|
const char* moc_exe = m_Makefile->GetRequiredDefinition("QT_MOC_EXECUTABLE");
|
2001-10-15 22:19:53 +04:00
|
|
|
|
|
|
|
// wrap all the .h files
|
2001-10-18 21:51:09 +04:00
|
|
|
depends.push_back(moc_exe);
|
2001-10-15 22:19:53 +04:00
|
|
|
|
2002-03-13 18:25:11 +03:00
|
|
|
for(size_t classNum = 0; classNum < lastClass; classNum++)
|
2001-10-15 22:19:53 +04:00
|
|
|
{
|
|
|
|
// Add output to build list
|
2002-06-27 23:57:09 +04:00
|
|
|
m_Makefile->AddSource(m_WrapClasses[classNum]);
|
2001-10-15 22:19:53 +04:00
|
|
|
|
|
|
|
// set up moc command
|
2001-11-06 17:35:48 +03:00
|
|
|
std::string res = m_Makefile->GetCurrentOutputDirectory();
|
|
|
|
res += "/";
|
|
|
|
res += m_WrapClasses[classNum].GetSourceName() + ".cxx";
|
2001-11-06 23:29:03 +03:00
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
cmCustomCommandLine commandLine;
|
|
|
|
commandLine.push_back(moc_exe);
|
|
|
|
commandLine.push_back("-o");
|
|
|
|
commandLine.push_back(res);
|
|
|
|
commandLine.push_back(m_WrapHeaders[classNum]);
|
|
|
|
|
|
|
|
cmCustomCommandLines commandLines;
|
|
|
|
commandLines.push_back(commandLine);
|
2001-10-15 22:19:53 +04:00
|
|
|
|
2004-01-05 19:13:50 +03:00
|
|
|
std::vector<std::string> realdepends = depends;
|
|
|
|
realdepends.push_back(m_WrapHeaders[classNum]);
|
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
const char* no_main_dependency = 0;
|
|
|
|
m_Makefile->AddCustomCommandToOutput(res.c_str(),
|
|
|
|
realdepends,
|
|
|
|
no_main_dependency,
|
|
|
|
commandLines,
|
|
|
|
"QT Wrapped File");
|
2001-10-15 22:19:53 +04:00
|
|
|
}
|
|
|
|
}
|