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
|
|
|
|
|
|
|
// Now check and see if the value has been stored in the cache
|
|
|
|
// already, if so use that value and don't look for the program
|
2001-10-18 21:51:09 +04:00
|
|
|
const char* QT_WRAP_CPP_value = m_Makefile->GetDefinition("QT_WRAP_CPP");
|
|
|
|
if (QT_WRAP_CPP_value==0)
|
|
|
|
{
|
|
|
|
this->SetError("called with QT_WRAP_CPP undefined");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(cmSystemTools::IsOff(QT_WRAP_CPP_value))
|
2001-10-15 22:19:53 +04:00
|
|
|
{
|
2001-11-06 23:29:03 +03:00
|
|
|
this->SetError("called with QT_WRAP_CPP off : ");
|
|
|
|
return false;
|
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
|
|
|
}
|
2002-06-27 23:57:09 +04:00
|
|
|
std::string srcName = cmSystemTools::GetFilenameWithoutExtension(*j);
|
|
|
|
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;
|
2002-09-02 15:03:43 +04:00
|
|
|
std::string moc_exe = "${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
|
|
|
|
2001-11-09 20:07:37 +03:00
|
|
|
const char * GENERATED_QT_FILES_value=
|
|
|
|
m_Makefile->GetDefinition("GENERATED_QT_FILES");
|
|
|
|
std::string moc_list("");
|
|
|
|
if (GENERATED_QT_FILES_value!=0)
|
|
|
|
{
|
|
|
|
moc_list=moc_list+GENERATED_QT_FILES_value;
|
|
|
|
}
|
2001-11-06 23:29:03 +03: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
|
|
|
|
|
|
|
moc_list = moc_list + " " + res;
|
2001-10-15 22:19:53 +04:00
|
|
|
|
|
|
|
std::vector<std::string> args;
|
|
|
|
args.push_back("-o");
|
|
|
|
args.push_back(res);
|
|
|
|
args.push_back(m_WrapHeaders[classNum]);
|
|
|
|
|
2003-11-03 23:53:54 +03:00
|
|
|
m_Makefile->AddCustomCommandToOutput(
|
|
|
|
res.c_str(),
|
|
|
|
moc_exe.c_str(),
|
|
|
|
args,
|
|
|
|
0,
|
|
|
|
depends,
|
|
|
|
"QT Wrapped File",
|
|
|
|
0);
|
2001-10-15 22:19:53 +04:00
|
|
|
}
|
|
|
|
|
2001-11-06 23:29:03 +03:00
|
|
|
m_Makefile->AddDefinition("GENERATED_QT_FILES",moc_list.c_str());
|
2001-10-15 22:19:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|