2011-10-22 21:43:34 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2004-2011 Kitware, Inc.
|
|
|
|
Copyright 2011 Alexander Neundorf (neundorf@kde.org)
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
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.
|
|
|
|
============================================================================*/
|
|
|
|
|
2011-08-07 19:16:00 +04:00
|
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
#include "cmLocalGenerator.h"
|
|
|
|
#include "cmMakefile.h"
|
2011-08-09 11:18:37 +04:00
|
|
|
#include "cmSourceFile.h"
|
2011-08-07 19:16:00 +04:00
|
|
|
#include "cmSystemTools.h"
|
2015-04-11 15:15:55 +03:00
|
|
|
#include "cmState.h"
|
2015-03-08 15:51:20 +03:00
|
|
|
#include "cmAlgorithms.h"
|
2011-08-07 19:16:00 +04:00
|
|
|
|
2013-03-29 23:56:13 +04:00
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
2015-05-17 12:33:09 +03:00
|
|
|
# include "cmGlobalVisualStudioGenerator.h"
|
2013-03-29 23:56:13 +04:00
|
|
|
#endif
|
|
|
|
|
2015-03-19 04:30:26 +03:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2011-11-11 01:54:44 +04:00
|
|
|
#include <cmsys/Terminal.h>
|
2012-06-06 23:14:40 +04:00
|
|
|
#include <cmsys/ios/sstream>
|
2014-01-04 09:47:13 +04:00
|
|
|
#include <cmsys/FStream.hxx>
|
2013-07-25 11:24:53 +04:00
|
|
|
#include <assert.h>
|
2011-11-11 01:54:44 +04:00
|
|
|
|
|
|
|
#include <string.h>
|
2012-03-28 03:36:33 +04:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
2011-08-14 18:43:04 +04:00
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
#include "cmQtAutoGenerators.h"
|
2011-08-07 14:02:46 +04:00
|
|
|
|
2011-08-08 17:20:13 +04:00
|
|
|
|
2013-08-07 18:48:09 +04:00
|
|
|
static bool requiresMocing(const std::string& text, std::string ¯oName)
|
2011-11-11 01:54:44 +04:00
|
|
|
{
|
|
|
|
// this simple check is much much faster than the regexp
|
2013-08-07 18:48:09 +04:00
|
|
|
if (strstr(text.c_str(), "Q_OBJECT") == NULL
|
|
|
|
&& strstr(text.c_str(), "Q_GADGET") == NULL)
|
2011-11-11 01:54:44 +04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmsys::RegularExpression qObjectRegExp("[\n][ \t]*Q_OBJECT[^a-zA-Z0-9_]");
|
2013-08-07 18:48:09 +04:00
|
|
|
if (qObjectRegExp.find(text))
|
|
|
|
{
|
|
|
|
macroName = "Q_OBJECT";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
cmsys::RegularExpression qGadgetRegExp("[\n][ \t]*Q_GADGET[^a-zA-Z0-9_]");
|
|
|
|
if (qGadgetRegExp.find(text))
|
|
|
|
{
|
|
|
|
macroName = "Q_GADGET";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2011-11-11 01:54:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-23 00:35:08 +04:00
|
|
|
static std::string findMatchingHeader(const std::string& absPath,
|
|
|
|
const std::string& mocSubDir,
|
|
|
|
const std::string& basename,
|
2013-02-10 20:49:42 +04:00
|
|
|
const std::vector<std::string>& headerExtensions)
|
2011-11-23 00:35:08 +04:00
|
|
|
{
|
|
|
|
std::string header;
|
2013-02-10 20:49:42 +04:00
|
|
|
for(std::vector<std::string>::const_iterator ext = headerExtensions.begin();
|
2011-11-23 00:35:08 +04:00
|
|
|
ext != headerExtensions.end();
|
|
|
|
++ext)
|
|
|
|
{
|
2013-02-10 20:58:29 +04:00
|
|
|
std::string sourceFilePath = absPath + basename + "." + (*ext);
|
2011-11-23 00:35:08 +04:00
|
|
|
if (cmsys::SystemTools::FileExists(sourceFilePath.c_str()))
|
|
|
|
{
|
|
|
|
header = sourceFilePath;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!mocSubDir.empty())
|
|
|
|
{
|
2013-02-10 20:58:29 +04:00
|
|
|
sourceFilePath = mocSubDir + basename + "." + (*ext);
|
2011-11-23 00:35:08 +04:00
|
|
|
if (cmsys::SystemTools::FileExists(sourceFilePath.c_str()))
|
|
|
|
{
|
|
|
|
header = sourceFilePath;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return header;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static std::string extractSubDir(const std::string& absPath,
|
|
|
|
const std::string& currentMoc)
|
|
|
|
{
|
|
|
|
std::string subDir;
|
|
|
|
if (currentMoc.find_first_of('/') != std::string::npos)
|
|
|
|
{
|
|
|
|
subDir = absPath
|
|
|
|
+ cmsys::SystemTools::GetFilenamePath(currentMoc) + '/';
|
|
|
|
}
|
|
|
|
return subDir;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-17 21:32:54 +04:00
|
|
|
static void copyTargetProperty(cmTarget* destinationTarget,
|
|
|
|
cmTarget* sourceTarget,
|
2013-09-03 00:27:32 +04:00
|
|
|
const std::string& propertyName)
|
2012-11-17 21:32:54 +04:00
|
|
|
{
|
|
|
|
const char* propertyValue = sourceTarget->GetProperty(propertyName);
|
|
|
|
if (propertyValue)
|
|
|
|
{
|
|
|
|
destinationTarget->SetProperty(propertyName, propertyValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-24 17:00:34 +04:00
|
|
|
static std::string ReadAll(const std::string& filename)
|
|
|
|
{
|
|
|
|
cmsys::ifstream file(filename.c_str());
|
|
|
|
cmsys_ios::stringstream stream;
|
|
|
|
stream << file.rdbuf();
|
|
|
|
file.close();
|
|
|
|
return stream.str();
|
|
|
|
}
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
cmQtAutoGenerators::cmQtAutoGenerators()
|
2011-08-11 01:49:30 +04:00
|
|
|
:Verbose(cmsys::SystemTools::GetEnv("VERBOSE") != 0)
|
2011-08-14 18:43:04 +04:00
|
|
|
,ColorOutput(true)
|
2011-08-08 17:20:13 +04:00
|
|
|
,RunMocFailed(false)
|
2013-07-25 11:24:53 +04:00
|
|
|
,RunUicFailed(false)
|
2013-09-15 16:41:07 +04:00
|
|
|
,RunRccFailed(false)
|
2011-08-08 17:20:13 +04:00
|
|
|
,GenerateAll(false)
|
2011-08-07 14:02:46 +04:00
|
|
|
{
|
2011-08-14 18:43:04 +04:00
|
|
|
|
|
|
|
std::string colorEnv = "";
|
|
|
|
cmsys::SystemTools::GetEnv("COLOR", colorEnv);
|
|
|
|
if(!colorEnv.empty())
|
|
|
|
{
|
|
|
|
if(cmSystemTools::IsOn(colorEnv.c_str()))
|
|
|
|
{
|
|
|
|
this->ColorOutput = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->ColorOutput = false;
|
|
|
|
}
|
|
|
|
}
|
2011-08-07 14:02:46 +04:00
|
|
|
}
|
|
|
|
|
2013-12-10 18:45:27 +04:00
|
|
|
static std::string getAutogenTargetName(cmTarget const* target)
|
2013-11-04 13:25:08 +04:00
|
|
|
{
|
|
|
|
std::string autogenTargetName = target->GetName();
|
|
|
|
autogenTargetName += "_automoc";
|
|
|
|
return autogenTargetName;
|
|
|
|
}
|
|
|
|
|
2013-12-10 18:45:27 +04:00
|
|
|
static std::string getAutogenTargetDir(cmTarget const* target)
|
2013-11-04 13:25:08 +04:00
|
|
|
{
|
|
|
|
cmMakefile* makefile = target->GetMakefile();
|
2015-04-16 22:33:09 +03:00
|
|
|
std::string targetDir = makefile->GetCurrentBinaryDirectory();
|
2013-11-04 13:25:08 +04:00
|
|
|
targetDir += makefile->GetCMakeInstance()->GetCMakeFilesDirectory();
|
|
|
|
targetDir += "/";
|
|
|
|
targetDir += getAutogenTargetName(target);
|
|
|
|
targetDir += ".dir/";
|
|
|
|
return targetDir;
|
|
|
|
}
|
|
|
|
|
2015-04-20 23:41:37 +03:00
|
|
|
static std::string cmQtAutoGeneratorsStripCR(std::string const& line)
|
|
|
|
{
|
|
|
|
// Strip CR characters rcc may have printed (possibly more than one!).
|
|
|
|
std::string::size_type cr = line.find('\r');
|
|
|
|
if (cr != line.npos)
|
|
|
|
{
|
|
|
|
return line.substr(0, cr);
|
|
|
|
}
|
|
|
|
return line;
|
|
|
|
}
|
|
|
|
|
2014-09-17 04:42:30 +04:00
|
|
|
std::string cmQtAutoGenerators::ListQt5RccInputs(cmSourceFile* sf,
|
|
|
|
cmTarget const* target,
|
|
|
|
std::vector<std::string>& depends)
|
|
|
|
{
|
|
|
|
std::string rccCommand = this->GetRccExecutable(target);
|
|
|
|
std::vector<std::string> qrcEntries;
|
|
|
|
|
|
|
|
std::vector<std::string> command;
|
|
|
|
command.push_back(rccCommand);
|
|
|
|
command.push_back("--list");
|
|
|
|
|
|
|
|
std::string absFile = cmsys::SystemTools::GetRealPath(
|
2014-11-23 13:05:50 +03:00
|
|
|
sf->GetFullPath());
|
2014-09-17 04:42:30 +04:00
|
|
|
|
|
|
|
command.push_back(absFile);
|
|
|
|
|
2015-04-20 23:42:19 +03:00
|
|
|
std::string rccStdOut;
|
|
|
|
std::string rccStdErr;
|
2014-09-17 04:42:30 +04:00
|
|
|
int retVal = 0;
|
2015-04-20 23:42:19 +03:00
|
|
|
bool result = cmSystemTools::RunSingleCommand(
|
|
|
|
command, &rccStdOut, &rccStdErr,
|
|
|
|
&retVal, 0, cmSystemTools::OUTPUT_NONE);
|
2014-09-17 04:42:30 +04:00
|
|
|
if (!result || retVal)
|
|
|
|
{
|
|
|
|
std::cerr << "AUTOGEN: error: Rcc list process for " << sf->GetFullPath()
|
2015-04-20 23:42:19 +03:00
|
|
|
<< " failed:\n" << rccStdOut << "\n" << rccStdErr << std::endl;
|
2014-09-17 04:42:30 +04:00
|
|
|
return std::string();
|
|
|
|
}
|
|
|
|
|
2015-04-20 23:42:19 +03:00
|
|
|
{
|
|
|
|
std::istringstream ostr(rccStdOut);
|
2014-09-17 04:42:30 +04:00
|
|
|
std::string oline;
|
|
|
|
while(std::getline(ostr, oline))
|
|
|
|
{
|
2015-04-20 23:41:37 +03:00
|
|
|
oline = cmQtAutoGeneratorsStripCR(oline);
|
2015-04-20 23:42:19 +03:00
|
|
|
if(!oline.empty())
|
2015-04-16 19:51:05 +03:00
|
|
|
{
|
2015-04-20 23:42:19 +03:00
|
|
|
qrcEntries.push_back(oline);
|
2015-04-16 19:51:05 +03:00
|
|
|
}
|
2015-04-20 23:42:19 +03:00
|
|
|
}
|
|
|
|
}
|
2015-04-16 19:51:05 +03:00
|
|
|
|
2015-04-20 23:42:19 +03:00
|
|
|
{
|
|
|
|
std::istringstream estr(rccStdErr);
|
|
|
|
std::string eline;
|
|
|
|
while(std::getline(estr, eline))
|
|
|
|
{
|
|
|
|
eline = cmQtAutoGeneratorsStripCR(eline);
|
|
|
|
if (cmHasLiteralPrefix(eline, "RCC: Error in"))
|
2014-09-17 04:42:30 +04:00
|
|
|
{
|
|
|
|
static std::string searchString = "Cannot find file '";
|
|
|
|
|
2015-04-20 23:42:19 +03:00
|
|
|
std::string::size_type pos = eline.find(searchString);
|
2014-09-17 04:42:30 +04:00
|
|
|
if (pos == std::string::npos)
|
|
|
|
{
|
|
|
|
std::cerr << "AUTOGEN: error: Rcc lists unparsable output "
|
2015-04-20 23:42:19 +03:00
|
|
|
<< eline << std::endl;
|
2014-09-17 04:42:30 +04:00
|
|
|
return std::string();
|
|
|
|
}
|
|
|
|
pos += searchString.length();
|
2015-04-20 23:42:19 +03:00
|
|
|
std::string::size_type sz = eline.size() - pos - 1;
|
|
|
|
qrcEntries.push_back(eline.substr(pos, sz));
|
2014-09-17 04:42:30 +04:00
|
|
|
}
|
|
|
|
}
|
2015-04-20 23:42:19 +03:00
|
|
|
}
|
|
|
|
|
2014-09-17 04:42:30 +04:00
|
|
|
depends.insert(depends.end(), qrcEntries.begin(), qrcEntries.end());
|
2015-01-07 10:58:51 +03:00
|
|
|
return cmJoin(qrcEntries, "@list_sep@");
|
2014-09-17 04:42:30 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string cmQtAutoGenerators::ListQt4RccInputs(cmSourceFile* sf,
|
|
|
|
std::vector<std::string>& depends)
|
|
|
|
{
|
|
|
|
const std::string qrcContents = ReadAll(sf->GetFullPath());
|
|
|
|
|
|
|
|
cmsys::RegularExpression fileMatchRegex("(<file[^<]+)");
|
|
|
|
|
|
|
|
std::string entriesList;
|
|
|
|
const char* sep = "";
|
|
|
|
|
|
|
|
size_t offset = 0;
|
|
|
|
while (fileMatchRegex.find(qrcContents.c_str() + offset))
|
|
|
|
{
|
|
|
|
std::string qrcEntry = fileMatchRegex.match(1);
|
|
|
|
|
|
|
|
offset += qrcEntry.size();
|
|
|
|
|
|
|
|
cmsys::RegularExpression fileReplaceRegex("(^<file[^>]*>)");
|
|
|
|
fileReplaceRegex.find(qrcEntry);
|
|
|
|
std::string tag = fileReplaceRegex.match(1);
|
|
|
|
|
|
|
|
qrcEntry = qrcEntry.substr(tag.size());
|
|
|
|
|
|
|
|
if (!cmSystemTools::FileIsFullPath(qrcEntry.c_str()))
|
|
|
|
{
|
|
|
|
qrcEntry = sf->GetLocation().GetDirectory() + "/" + qrcEntry;
|
|
|
|
}
|
|
|
|
|
|
|
|
entriesList += sep;
|
|
|
|
entriesList += qrcEntry;
|
|
|
|
sep = "@list_sep@";
|
|
|
|
depends.push_back(qrcEntry);
|
|
|
|
}
|
|
|
|
return entriesList;
|
|
|
|
}
|
|
|
|
|
2013-11-04 13:32:27 +04:00
|
|
|
bool cmQtAutoGenerators::InitializeAutogenTarget(cmTarget* target)
|
2013-02-20 20:06:45 +04:00
|
|
|
{
|
2013-03-12 02:26:38 +04:00
|
|
|
cmMakefile* makefile = target->GetMakefile();
|
|
|
|
// don't do anything if there is no Qt4 or Qt5Core (which contains moc):
|
|
|
|
std::string qtMajorVersion = makefile->GetSafeDefinition("QT_VERSION_MAJOR");
|
|
|
|
if (qtMajorVersion == "")
|
|
|
|
{
|
|
|
|
qtMajorVersion = makefile->GetSafeDefinition("Qt5Core_VERSION_MAJOR");
|
|
|
|
}
|
|
|
|
if (qtMajorVersion != "4" && qtMajorVersion != "5")
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-11 15:30:54 +04:00
|
|
|
if (target->GetPropertyAsBool("AUTOMOC"))
|
|
|
|
{
|
2013-11-04 13:25:08 +04:00
|
|
|
std::string automocTargetName = getAutogenTargetName(target);
|
2015-04-16 22:33:09 +03:00
|
|
|
std::string mocCppFile = makefile->GetCurrentBinaryDirectory();
|
2013-10-11 15:30:54 +04:00
|
|
|
mocCppFile += "/";
|
|
|
|
mocCppFile += automocTargetName;
|
|
|
|
mocCppFile += ".cpp";
|
2014-03-12 15:45:14 +04:00
|
|
|
makefile->GetOrCreateSource(mocCppFile, true);
|
2013-10-11 15:30:54 +04:00
|
|
|
makefile->AppendProperty("ADDITIONAL_MAKE_CLEAN_FILES",
|
|
|
|
mocCppFile.c_str(), false);
|
|
|
|
|
2014-03-12 15:45:14 +04:00
|
|
|
target->AddSource(mocCppFile);
|
2013-10-11 15:30:54 +04:00
|
|
|
}
|
2013-10-11 16:26:51 +04:00
|
|
|
// create a custom target for running generators at buildtime:
|
2013-11-04 13:25:08 +04:00
|
|
|
std::string autogenTargetName = getAutogenTargetName(target);
|
2011-08-09 11:18:37 +04:00
|
|
|
|
2013-11-04 13:25:08 +04:00
|
|
|
std::string targetDir = getAutogenTargetDir(target);
|
2011-08-09 11:18:37 +04:00
|
|
|
|
|
|
|
cmCustomCommandLine currentLine;
|
2015-05-20 16:10:52 +03:00
|
|
|
currentLine.push_back(cmSystemTools::GetCMakeCommand());
|
2011-08-09 11:18:37 +04:00
|
|
|
currentLine.push_back("-E");
|
2013-10-02 15:40:49 +04:00
|
|
|
currentLine.push_back("cmake_autogen");
|
2011-08-09 11:18:37 +04:00
|
|
|
currentLine.push_back(targetDir);
|
2013-06-11 17:52:48 +04:00
|
|
|
currentLine.push_back("$<CONFIGURATION>");
|
2011-08-09 11:18:37 +04:00
|
|
|
|
|
|
|
cmCustomCommandLines commandLines;
|
|
|
|
commandLines.push_back(currentLine);
|
|
|
|
|
|
|
|
std::string workingDirectory = cmSystemTools::CollapseFullPath(
|
2015-04-16 22:33:09 +03:00
|
|
|
"", makefile->GetCurrentBinaryDirectory());
|
2011-08-09 11:18:37 +04:00
|
|
|
|
|
|
|
std::vector<std::string> depends;
|
2013-11-18 11:09:56 +04:00
|
|
|
if (const char *autogenDepends =
|
|
|
|
target->GetProperty("AUTOGEN_TARGET_DEPENDS"))
|
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(autogenDepends, depends);
|
|
|
|
}
|
2013-07-25 11:24:53 +04:00
|
|
|
std::vector<std::string> toolNames;
|
|
|
|
if (target->GetPropertyAsBool("AUTOMOC"))
|
|
|
|
{
|
|
|
|
toolNames.push_back("moc");
|
|
|
|
}
|
|
|
|
if (target->GetPropertyAsBool("AUTOUIC"))
|
|
|
|
{
|
|
|
|
toolNames.push_back("uic");
|
|
|
|
}
|
2013-09-15 16:41:07 +04:00
|
|
|
if (target->GetPropertyAsBool("AUTORCC"))
|
|
|
|
{
|
|
|
|
toolNames.push_back("rcc");
|
|
|
|
}
|
2013-07-25 11:24:53 +04:00
|
|
|
|
|
|
|
std::string tools = toolNames[0];
|
|
|
|
toolNames.erase(toolNames.begin());
|
2013-09-15 16:41:07 +04:00
|
|
|
while (toolNames.size() > 1)
|
|
|
|
{
|
|
|
|
tools += ", " + toolNames[0];
|
|
|
|
toolNames.erase(toolNames.begin());
|
|
|
|
}
|
2013-07-25 11:24:53 +04:00
|
|
|
if (toolNames.size() == 1)
|
|
|
|
{
|
|
|
|
tools += " and " + toolNames[0];
|
|
|
|
}
|
2013-10-11 16:26:51 +04:00
|
|
|
std::string autogenComment = "Automatic " + tools + " for target ";
|
2013-11-04 13:29:21 +04:00
|
|
|
autogenComment += target->GetName();
|
2011-08-09 11:18:37 +04:00
|
|
|
|
2013-03-29 23:56:13 +04:00
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
|
|
|
bool usePRE_BUILD = false;
|
2015-06-06 15:59:22 +03:00
|
|
|
cmGlobalGenerator* gg = makefile->GetGlobalGenerator();
|
2014-02-25 02:36:27 +04:00
|
|
|
if(gg->GetName().find("Visual Studio") != std::string::npos)
|
2013-03-29 23:56:13 +04:00
|
|
|
{
|
2015-05-17 12:33:09 +03:00
|
|
|
cmGlobalVisualStudioGenerator* vsgg =
|
|
|
|
static_cast<cmGlobalVisualStudioGenerator*>(gg);
|
2013-03-29 23:56:13 +04:00
|
|
|
// Under VS >= 7 use a PRE_BUILD event instead of a separate target to
|
|
|
|
// reduce the number of targets loaded into the IDE.
|
|
|
|
// This also works around a VS 11 bug that may skip updating the target:
|
|
|
|
// https://connect.microsoft.com/VisualStudio/feedback/details/769495
|
2015-05-17 12:33:09 +03:00
|
|
|
usePRE_BUILD = vsgg->GetVersion() >= cmGlobalVisualStudioGenerator::VS7;
|
2014-03-05 16:43:50 +04:00
|
|
|
if(usePRE_BUILD)
|
|
|
|
{
|
|
|
|
for (std::vector<std::string>::iterator it = depends.begin();
|
|
|
|
it != depends.end(); ++it)
|
|
|
|
{
|
|
|
|
if(!makefile->FindTargetToUse(it->c_str()))
|
|
|
|
{
|
|
|
|
usePRE_BUILD = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-03-29 23:56:13 +04:00
|
|
|
}
|
2014-09-17 04:42:30 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
std::vector<std::string> rcc_output;
|
2015-03-27 22:27:40 +03:00
|
|
|
bool const isNinja =
|
2015-05-03 12:10:30 +03:00
|
|
|
makefile->GetGlobalGenerator()->GetName() == "Ninja";
|
2015-03-27 22:27:40 +03:00
|
|
|
if(isNinja
|
2014-09-17 04:42:30 +04:00
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
|
|
|
|| usePRE_BUILD
|
|
|
|
#endif
|
|
|
|
)
|
|
|
|
{
|
|
|
|
std::vector<cmSourceFile*> srcFiles;
|
|
|
|
target->GetConfigCommonSourceFiles(srcFiles);
|
|
|
|
for(std::vector<cmSourceFile*>::const_iterator fileIt = srcFiles.begin();
|
|
|
|
fileIt != srcFiles.end();
|
|
|
|
++fileIt)
|
|
|
|
{
|
|
|
|
cmSourceFile* sf = *fileIt;
|
|
|
|
std::string absFile = cmsys::SystemTools::GetRealPath(
|
2014-11-23 13:05:50 +03:00
|
|
|
sf->GetFullPath());
|
2014-09-17 04:42:30 +04:00
|
|
|
|
|
|
|
std::string ext = sf->GetExtension();
|
|
|
|
|
|
|
|
if (target->GetPropertyAsBool("AUTORCC"))
|
|
|
|
{
|
|
|
|
if (ext == "qrc"
|
|
|
|
&& !cmSystemTools::IsOn(sf->GetPropertyForUser("SKIP_AUTORCC")))
|
|
|
|
{
|
|
|
|
std::string basename = cmsys::SystemTools::
|
|
|
|
GetFilenameWithoutLastExtension(absFile);
|
|
|
|
|
|
|
|
std::string rcc_output_dir = target->GetSupportDirectory();
|
|
|
|
cmSystemTools::MakeDirectory(rcc_output_dir.c_str());
|
|
|
|
std::string rcc_output_file = rcc_output_dir;
|
|
|
|
rcc_output_file += "/qrc_" + basename + ".cpp";
|
|
|
|
rcc_output.push_back(rcc_output_file);
|
|
|
|
|
|
|
|
if (!cmSystemTools::IsOn(sf->GetPropertyForUser("GENERATED")))
|
|
|
|
{
|
|
|
|
if (qtMajorVersion == "5")
|
|
|
|
{
|
|
|
|
this->ListQt5RccInputs(sf, target, depends);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->ListQt4RccInputs(sf, depends);
|
|
|
|
}
|
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
2015-06-22 17:49:36 +03:00
|
|
|
// Cannot use PRE_BUILD because the resource files themselves
|
|
|
|
// may not be sources within the target so VS may not know the
|
|
|
|
// target needs to re-build at all.
|
2014-09-17 04:42:30 +04:00
|
|
|
usePRE_BUILD = false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
2013-03-29 23:56:13 +04:00
|
|
|
if(usePRE_BUILD)
|
|
|
|
{
|
|
|
|
// Add the pre-build command directly to bypass the OBJECT_LIBRARY
|
|
|
|
// rejection in cmMakefile::AddCustomCommandToTarget because we know
|
|
|
|
// PRE_BUILD will work for an OBJECT_LIBRARY in this specific case.
|
|
|
|
std::vector<std::string> no_output;
|
2014-11-14 02:54:52 +03:00
|
|
|
std::vector<std::string> no_byproducts;
|
|
|
|
cmCustomCommand cc(makefile, no_output, no_byproducts, depends,
|
2013-10-11 16:26:51 +04:00
|
|
|
commandLines, autogenComment.c_str(),
|
2013-03-29 23:56:13 +04:00
|
|
|
workingDirectory.c_str());
|
|
|
|
cc.SetEscapeOldStyle(false);
|
|
|
|
cc.SetEscapeAllowMakeVars(true);
|
2013-11-19 14:05:47 +04:00
|
|
|
target->AddPreBuildCommand(cc);
|
2013-03-29 23:56:13 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
2015-06-19 16:38:04 +03:00
|
|
|
cmTarget* autogenTarget = makefile->AddUtilityCommand(
|
2014-03-11 03:04:11 +04:00
|
|
|
autogenTargetName, true,
|
2015-03-27 22:27:40 +03:00
|
|
|
workingDirectory.c_str(),
|
|
|
|
/*byproducts=*/rcc_output, depends,
|
2013-10-11 16:26:51 +04:00
|
|
|
commandLines, false, autogenComment.c_str());
|
2014-09-17 04:42:30 +04:00
|
|
|
|
2013-06-28 23:40:16 +04:00
|
|
|
// Set target folder
|
2015-04-11 15:15:55 +03:00
|
|
|
const char* autogenFolder = makefile->GetState()
|
|
|
|
->GetGlobalProperty("AUTOMOC_TARGETS_FOLDER");
|
2013-10-11 16:26:53 +04:00
|
|
|
if (!autogenFolder)
|
2013-06-28 23:40:16 +04:00
|
|
|
{
|
2015-04-11 15:15:55 +03:00
|
|
|
autogenFolder = makefile->GetState()
|
|
|
|
->GetGlobalProperty("AUTOGEN_TARGETS_FOLDER");
|
2013-10-11 16:26:53 +04:00
|
|
|
}
|
|
|
|
if (autogenFolder && *autogenFolder)
|
|
|
|
{
|
|
|
|
autogenTarget->SetProperty("FOLDER", autogenFolder);
|
2013-06-28 23:40:16 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// inherit FOLDER property from target (#13688)
|
2013-10-11 16:26:51 +04:00
|
|
|
copyTargetProperty(autogenTarget, target, "FOLDER");
|
2013-06-28 23:40:16 +04:00
|
|
|
}
|
2013-03-29 23:56:13 +04:00
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
target->AddUtility(autogenTargetName);
|
2013-03-29 23:56:13 +04:00
|
|
|
}
|
2011-08-09 11:18:37 +04:00
|
|
|
|
2013-11-04 13:29:21 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-12-10 18:45:27 +04:00
|
|
|
static void GetCompileDefinitionsAndDirectories(cmTarget const* target,
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config,
|
2013-11-04 13:29:21 +04:00
|
|
|
std::string &incs,
|
|
|
|
std::string &defs)
|
|
|
|
{
|
|
|
|
cmMakefile* makefile = target->GetMakefile();
|
2015-06-06 15:59:06 +03:00
|
|
|
cmGlobalGenerator* globalGen = makefile->GetGlobalGenerator();
|
2013-11-04 13:29:21 +04:00
|
|
|
std::vector<std::string> includeDirs;
|
2015-06-06 15:59:06 +03:00
|
|
|
cmGeneratorTarget *gtgt = globalGen->GetGeneratorTarget(target);
|
|
|
|
cmLocalGenerator *localGen = gtgt->GetLocalGenerator();
|
2013-11-04 13:29:21 +04:00
|
|
|
// Get the include dirs for this target, without stripping the implicit
|
|
|
|
// include dirs off, see http://public.kitware.com/Bug/view.php?id=13667
|
2013-12-10 18:45:27 +04:00
|
|
|
localGen->GetIncludeDirectories(includeDirs, gtgt, "CXX", config, false);
|
2015-01-07 10:58:51 +03:00
|
|
|
|
|
|
|
incs = cmJoin(includeDirs, ";");
|
2013-11-04 13:29:21 +04:00
|
|
|
|
|
|
|
std::set<std::string> defines;
|
2015-03-04 23:46:42 +03:00
|
|
|
localGen->AddCompileDefinitions(defines, target, config, "CXX");
|
2013-11-04 13:29:21 +04:00
|
|
|
|
2015-01-07 10:58:51 +03:00
|
|
|
defs += cmJoin(defines, ";");
|
2013-11-04 13:29:21 +04:00
|
|
|
}
|
|
|
|
|
2013-12-10 18:45:27 +04:00
|
|
|
void cmQtAutoGenerators::SetupAutoGenerateTarget(cmTarget const* target)
|
2013-11-04 13:29:21 +04:00
|
|
|
{
|
|
|
|
cmMakefile* makefile = target->GetMakefile();
|
|
|
|
|
|
|
|
// forget the variables added here afterwards again:
|
|
|
|
cmMakefile::ScopePushPop varScope(makefile);
|
|
|
|
static_cast<void>(varScope);
|
|
|
|
|
|
|
|
// create a custom target for running generators at buildtime:
|
|
|
|
std::string autogenTargetName = getAutogenTargetName(target);
|
|
|
|
|
|
|
|
makefile->AddDefinition("_moc_target_name",
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(autogenTargetName).c_str());
|
2014-04-17 12:50:50 +04:00
|
|
|
makefile->AddDefinition("_origin_target_name",
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(target->GetName()).c_str());
|
2013-11-04 13:29:21 +04:00
|
|
|
|
|
|
|
std::string targetDir = getAutogenTargetDir(target);
|
|
|
|
|
|
|
|
const char *qtVersion = makefile->GetDefinition("Qt5Core_VERSION_MAJOR");
|
|
|
|
if (!qtVersion)
|
|
|
|
{
|
|
|
|
qtVersion = makefile->GetDefinition("QT_VERSION_MAJOR");
|
|
|
|
}
|
|
|
|
if (const char *targetQtVersion =
|
2014-02-10 07:48:34 +04:00
|
|
|
target->GetLinkInterfaceDependentStringProperty("QT_MAJOR_VERSION", ""))
|
2013-11-04 13:29:21 +04:00
|
|
|
{
|
|
|
|
qtVersion = targetQtVersion;
|
|
|
|
}
|
|
|
|
if (qtVersion)
|
|
|
|
{
|
|
|
|
makefile->AddDefinition("_target_qt_version", qtVersion);
|
|
|
|
}
|
|
|
|
|
2013-10-11 16:26:56 +04:00
|
|
|
std::map<std::string, std::string> configIncludes;
|
|
|
|
std::map<std::string, std::string> configDefines;
|
2013-11-20 17:54:39 +04:00
|
|
|
std::map<std::string, std::string> configUicOptions;
|
2013-10-11 16:26:56 +04:00
|
|
|
|
2014-01-24 19:32:34 +04:00
|
|
|
if (target->GetPropertyAsBool("AUTOMOC")
|
2014-09-10 18:20:43 +04:00
|
|
|
|| target->GetPropertyAsBool("AUTOUIC")
|
|
|
|
|| target->GetPropertyAsBool("AUTORCC"))
|
2014-01-24 19:32:34 +04:00
|
|
|
{
|
|
|
|
this->SetupSourceFiles(target);
|
|
|
|
}
|
|
|
|
makefile->AddDefinition("_cpp_files",
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(this->Sources).c_str());
|
2013-10-11 15:30:54 +04:00
|
|
|
if (target->GetPropertyAsBool("AUTOMOC"))
|
|
|
|
{
|
|
|
|
this->SetupAutoMocTarget(target, autogenTargetName,
|
|
|
|
configIncludes, configDefines);
|
|
|
|
}
|
2013-07-25 11:24:53 +04:00
|
|
|
if (target->GetPropertyAsBool("AUTOUIC"))
|
|
|
|
{
|
2013-11-20 17:54:39 +04:00
|
|
|
this->SetupAutoUicTarget(target, configUicOptions);
|
2013-07-25 11:24:53 +04:00
|
|
|
}
|
2013-09-15 16:41:07 +04:00
|
|
|
if (target->GetPropertyAsBool("AUTORCC"))
|
|
|
|
{
|
|
|
|
this->SetupAutoRccTarget(target);
|
|
|
|
}
|
2013-10-11 16:26:56 +04:00
|
|
|
|
|
|
|
const char* cmakeRoot = makefile->GetSafeDefinition("CMAKE_ROOT");
|
|
|
|
std::string inputFile = cmakeRoot;
|
|
|
|
inputFile += "/Modules/AutogenInfo.cmake.in";
|
|
|
|
std::string outputFile = targetDir;
|
|
|
|
outputFile += "/AutogenInfo.cmake";
|
2014-09-17 04:42:30 +04:00
|
|
|
makefile->AddDefinition("_qt_rcc_inputs",
|
|
|
|
makefile->GetDefinition("_qt_rcc_inputs_" + target->GetName()));
|
2013-10-11 16:26:56 +04:00
|
|
|
makefile->ConfigureFile(inputFile.c_str(), outputFile.c_str(),
|
|
|
|
false, true, false);
|
|
|
|
|
2015-03-19 04:30:26 +03:00
|
|
|
// Ensure we have write permission in case .in was read-only.
|
|
|
|
mode_t perm = 0;
|
2015-06-15 16:56:52 +03:00
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
2015-03-19 04:30:26 +03:00
|
|
|
mode_t mode_write = S_IWRITE;
|
|
|
|
#else
|
|
|
|
mode_t mode_write = S_IWUSR;
|
|
|
|
#endif
|
|
|
|
cmSystemTools::GetPermissions(outputFile, perm);
|
|
|
|
if (!(perm & mode_write))
|
|
|
|
{
|
|
|
|
cmSystemTools::SetPermissions(outputFile, perm | mode_write);
|
|
|
|
}
|
2013-11-20 17:54:39 +04:00
|
|
|
if (!configDefines.empty()
|
|
|
|
|| !configIncludes.empty()
|
|
|
|
|| !configUicOptions.empty())
|
2013-10-11 16:26:56 +04:00
|
|
|
{
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ofstream infoFile(outputFile.c_str(), std::ios::app);
|
2013-10-11 16:26:56 +04:00
|
|
|
if ( !infoFile )
|
|
|
|
{
|
|
|
|
std::string error = "Internal CMake error when trying to open file: ";
|
|
|
|
error += outputFile.c_str();
|
|
|
|
error += " for writing.";
|
|
|
|
cmSystemTools::Error(error.c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!configDefines.empty())
|
|
|
|
{
|
|
|
|
for (std::map<std::string, std::string>::iterator
|
|
|
|
it = configDefines.begin(), end = configDefines.end();
|
|
|
|
it != end; ++it)
|
|
|
|
{
|
|
|
|
infoFile << "set(AM_MOC_COMPILE_DEFINITIONS_" << it->first <<
|
|
|
|
" " << it->second << ")\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!configIncludes.empty())
|
|
|
|
{
|
|
|
|
for (std::map<std::string, std::string>::iterator
|
|
|
|
it = configIncludes.begin(), end = configIncludes.end();
|
|
|
|
it != end; ++it)
|
|
|
|
{
|
|
|
|
infoFile << "set(AM_MOC_INCLUDES_" << it->first <<
|
|
|
|
" " << it->second << ")\n";
|
|
|
|
}
|
|
|
|
}
|
2013-11-20 17:54:39 +04:00
|
|
|
if (!configUicOptions.empty())
|
|
|
|
{
|
|
|
|
for (std::map<std::string, std::string>::iterator
|
|
|
|
it = configUicOptions.begin(), end = configUicOptions.end();
|
|
|
|
it != end; ++it)
|
|
|
|
{
|
|
|
|
infoFile << "set(AM_UIC_TARGET_OPTIONS_" << it->first <<
|
|
|
|
" " << it->second << ")\n";
|
|
|
|
}
|
|
|
|
}
|
2013-10-11 16:26:56 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-24 19:32:34 +04:00
|
|
|
void cmQtAutoGenerators::SetupSourceFiles(cmTarget const* target)
|
2013-10-11 16:26:56 +04:00
|
|
|
{
|
|
|
|
cmMakefile* makefile = target->GetMakefile();
|
|
|
|
|
2011-08-09 11:18:37 +04:00
|
|
|
const char* sepFiles = "";
|
|
|
|
const char* sepHeaders = "";
|
2011-08-16 03:27:30 +04:00
|
|
|
|
2013-07-14 20:22:57 +04:00
|
|
|
std::vector<cmSourceFile*> srcFiles;
|
2014-02-13 20:25:00 +04:00
|
|
|
target->GetConfigCommonSourceFiles(srcFiles);
|
2011-08-16 03:27:30 +04:00
|
|
|
|
2014-01-24 19:32:34 +04:00
|
|
|
const char *skipMocSep = "";
|
|
|
|
const char *skipUicSep = "";
|
|
|
|
|
2014-03-12 15:45:14 +04:00
|
|
|
std::vector<std::string> newRccFiles;
|
2013-10-11 17:04:15 +04:00
|
|
|
|
2011-08-16 03:27:30 +04:00
|
|
|
for(std::vector<cmSourceFile*>::const_iterator fileIt = srcFiles.begin();
|
|
|
|
fileIt != srcFiles.end();
|
2011-08-09 11:18:37 +04:00
|
|
|
++fileIt)
|
|
|
|
{
|
2011-08-16 03:27:30 +04:00
|
|
|
cmSourceFile* sf = *fileIt;
|
2012-10-14 23:16:25 +04:00
|
|
|
std::string absFile = cmsys::SystemTools::GetRealPath(
|
2014-10-15 16:54:05 +04:00
|
|
|
sf->GetFullPath());
|
2014-01-24 19:32:34 +04:00
|
|
|
bool skipMoc = cmSystemTools::IsOn(sf->GetPropertyForUser("SKIP_AUTOMOC"));
|
2011-08-16 03:27:30 +04:00
|
|
|
bool generated = cmSystemTools::IsOn(sf->GetPropertyForUser("GENERATED"));
|
2011-08-09 11:18:37 +04:00
|
|
|
|
2014-01-24 19:32:34 +04:00
|
|
|
if(cmSystemTools::IsOn(sf->GetPropertyForUser("SKIP_AUTOUIC")))
|
|
|
|
{
|
|
|
|
this->SkipUic += skipUicSep;
|
|
|
|
this->SkipUic += absFile;
|
|
|
|
skipUicSep = ";";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ext = sf->GetExtension();
|
2014-02-05 12:55:51 +04:00
|
|
|
|
|
|
|
if (target->GetPropertyAsBool("AUTORCC"))
|
2014-01-24 19:32:34 +04:00
|
|
|
{
|
2014-02-05 12:55:51 +04:00
|
|
|
if (ext == "qrc"
|
|
|
|
&& !cmSystemTools::IsOn(sf->GetPropertyForUser("SKIP_AUTORCC")))
|
|
|
|
{
|
|
|
|
std::string basename = cmsys::SystemTools::
|
|
|
|
GetFilenameWithoutLastExtension(absFile);
|
|
|
|
|
2014-04-17 12:50:50 +04:00
|
|
|
std::string rcc_output_dir = target->GetSupportDirectory();
|
|
|
|
cmSystemTools::MakeDirectory(rcc_output_dir.c_str());
|
|
|
|
std::string rcc_output_file = rcc_output_dir;
|
2014-02-05 12:55:51 +04:00
|
|
|
rcc_output_file += "/qrc_" + basename + ".cpp";
|
|
|
|
makefile->AppendProperty("ADDITIONAL_MAKE_CLEAN_FILES",
|
|
|
|
rcc_output_file.c_str(), false);
|
2014-03-12 15:45:14 +04:00
|
|
|
makefile->GetOrCreateSource(rcc_output_file, true);
|
|
|
|
newRccFiles.push_back(rcc_output_file);
|
2014-02-05 12:55:51 +04:00
|
|
|
}
|
2014-01-24 19:32:34 +04:00
|
|
|
}
|
|
|
|
|
2013-10-11 17:04:15 +04:00
|
|
|
if (!generated)
|
2011-08-09 11:18:37 +04:00
|
|
|
{
|
2014-01-24 19:32:34 +04:00
|
|
|
if (skipMoc)
|
2011-08-09 11:18:37 +04:00
|
|
|
{
|
2014-01-24 19:32:34 +04:00
|
|
|
this->SkipMoc += skipMocSep;
|
|
|
|
this->SkipMoc += absFile;
|
|
|
|
skipMocSep = ";";
|
2011-08-09 11:18:37 +04:00
|
|
|
}
|
2013-10-11 17:04:15 +04:00
|
|
|
else
|
2011-08-09 11:18:37 +04:00
|
|
|
{
|
2013-10-11 17:04:15 +04:00
|
|
|
cmSystemTools::FileFormat fileType = cmSystemTools::GetFileFormat(
|
|
|
|
ext.c_str());
|
|
|
|
if (fileType == cmSystemTools::CXX_FILE_FORMAT)
|
|
|
|
{
|
2014-01-24 19:32:34 +04:00
|
|
|
this->Sources += sepFiles;
|
|
|
|
this->Sources += absFile;
|
2013-10-11 17:04:15 +04:00
|
|
|
sepFiles = ";";
|
|
|
|
}
|
|
|
|
else if (fileType == cmSystemTools::HEADER_FILE_FORMAT)
|
|
|
|
{
|
2014-01-24 19:32:34 +04:00
|
|
|
this->Headers += sepHeaders;
|
|
|
|
this->Headers += absFile;
|
2013-10-11 17:04:15 +04:00
|
|
|
sepHeaders = ";";
|
|
|
|
}
|
2011-08-09 11:18:37 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-12 15:45:14 +04:00
|
|
|
for(std::vector<std::string>::const_iterator fileIt = newRccFiles.begin();
|
2014-01-24 19:32:34 +04:00
|
|
|
fileIt != newRccFiles.end();
|
|
|
|
++fileIt)
|
|
|
|
{
|
2014-03-12 15:45:14 +04:00
|
|
|
const_cast<cmTarget*>(target)->AddSource(*fileIt);
|
2014-01-24 19:32:34 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmQtAutoGenerators::SetupAutoMocTarget(cmTarget const* target,
|
|
|
|
const std::string &autogenTargetName,
|
|
|
|
std::map<std::string, std::string> &configIncludes,
|
|
|
|
std::map<std::string, std::string> &configDefines)
|
|
|
|
{
|
|
|
|
cmMakefile* makefile = target->GetMakefile();
|
|
|
|
|
2013-06-11 17:52:48 +04:00
|
|
|
const char* tmp = target->GetProperty("AUTOMOC_MOC_OPTIONS");
|
2011-11-01 17:33:11 +04:00
|
|
|
std::string _moc_options = (tmp!=0 ? tmp : "");
|
2012-03-21 01:52:05 +04:00
|
|
|
makefile->AddDefinition("_moc_options",
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(_moc_options).c_str());
|
2013-10-11 17:04:15 +04:00
|
|
|
makefile->AddDefinition("_skip_moc",
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(this->SkipMoc).c_str());
|
2012-03-21 01:52:05 +04:00
|
|
|
makefile->AddDefinition("_moc_headers",
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(this->Headers).c_str());
|
2013-10-02 15:49:19 +04:00
|
|
|
bool relaxedMode = makefile->IsOn("CMAKE_AUTOMOC_RELAXED_MODE");
|
2011-12-14 01:11:47 +04:00
|
|
|
makefile->AddDefinition("_moc_relaxed_mode", relaxedMode ? "TRUE" : "FALSE");
|
2011-08-09 11:18:37 +04:00
|
|
|
|
2013-06-11 17:52:48 +04:00
|
|
|
std::string _moc_incs;
|
|
|
|
std::string _moc_compile_defs;
|
|
|
|
std::vector<std::string> configs;
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config = makefile->GetConfigurations(configs);
|
2013-06-11 17:52:48 +04:00
|
|
|
GetCompileDefinitionsAndDirectories(target, config,
|
|
|
|
_moc_incs, _moc_compile_defs);
|
|
|
|
|
|
|
|
makefile->AddDefinition("_moc_incs",
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(_moc_incs).c_str());
|
2013-06-11 17:52:48 +04:00
|
|
|
makefile->AddDefinition("_moc_compile_defs",
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(_moc_compile_defs).c_str());
|
2013-06-11 17:52:48 +04:00
|
|
|
|
|
|
|
for (std::vector<std::string>::const_iterator li = configs.begin();
|
|
|
|
li != configs.end(); ++li)
|
|
|
|
{
|
|
|
|
std::string config_moc_incs;
|
|
|
|
std::string config_moc_compile_defs;
|
2014-03-11 03:04:11 +04:00
|
|
|
GetCompileDefinitionsAndDirectories(target, *li,
|
2013-06-11 17:52:48 +04:00
|
|
|
config_moc_incs,
|
|
|
|
config_moc_compile_defs);
|
|
|
|
if (config_moc_incs != _moc_incs)
|
|
|
|
{
|
2013-11-26 04:17:54 +04:00
|
|
|
configIncludes[*li] =
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(config_moc_incs);
|
2013-06-11 17:52:48 +04:00
|
|
|
if(_moc_incs.empty())
|
|
|
|
{
|
|
|
|
_moc_incs = config_moc_incs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (config_moc_compile_defs != _moc_compile_defs)
|
|
|
|
{
|
2013-11-26 04:17:54 +04:00
|
|
|
configDefines[*li] =
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(config_moc_compile_defs);
|
2013-06-11 17:52:48 +04:00
|
|
|
if(_moc_compile_defs.empty())
|
|
|
|
{
|
|
|
|
_moc_compile_defs = config_moc_compile_defs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-11 16:26:56 +04:00
|
|
|
const char *qtVersion = makefile->GetDefinition("_target_qt_version");
|
2013-05-27 19:58:57 +04:00
|
|
|
if (strcmp(qtVersion, "5") == 0)
|
2013-05-27 22:53:51 +04:00
|
|
|
{
|
|
|
|
cmTarget *qt5Moc = makefile->FindTargetToUse("Qt5::moc");
|
|
|
|
if (!qt5Moc)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Qt5::moc target not found ",
|
2013-10-02 15:50:07 +04:00
|
|
|
autogenTargetName.c_str());
|
2013-05-27 22:53:51 +04:00
|
|
|
return;
|
|
|
|
}
|
2014-03-08 16:55:46 +04:00
|
|
|
makefile->AddDefinition("_qt_moc_executable", qt5Moc->GetLocation(""));
|
2013-05-27 22:53:51 +04:00
|
|
|
}
|
2014-01-24 16:02:16 +04:00
|
|
|
else if (strcmp(qtVersion, "4") == 0)
|
2013-05-27 22:53:51 +04:00
|
|
|
{
|
2014-01-24 16:02:16 +04:00
|
|
|
cmTarget *qt4Moc = makefile->FindTargetToUse("Qt4::moc");
|
|
|
|
if (!qt4Moc)
|
2013-05-27 19:58:57 +04:00
|
|
|
{
|
2014-01-24 16:02:16 +04:00
|
|
|
cmSystemTools::Error("Qt4::moc target not found ",
|
|
|
|
autogenTargetName.c_str());
|
|
|
|
return;
|
2013-05-27 19:58:57 +04:00
|
|
|
}
|
2014-03-08 16:55:46 +04:00
|
|
|
makefile->AddDefinition("_qt_moc_executable", qt4Moc->GetLocation(""));
|
2014-01-24 16:02:16 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("The CMAKE_AUTOMOC feature supports only Qt 4 and "
|
|
|
|
"Qt 5 ", autogenTargetName.c_str());
|
2013-05-27 22:53:51 +04:00
|
|
|
}
|
2011-08-09 11:18:37 +04:00
|
|
|
}
|
|
|
|
|
2013-07-25 11:24:53 +04:00
|
|
|
void cmQtAutoGenerators::MergeUicOptions(std::vector<std::string> &opts,
|
|
|
|
const std::vector<std::string> &fileOpts,
|
|
|
|
bool isQt5)
|
|
|
|
{
|
|
|
|
static const char* valueOptions[] = {
|
|
|
|
"tr",
|
|
|
|
"translate",
|
|
|
|
"postfix",
|
|
|
|
"generator",
|
2013-11-21 02:17:13 +04:00
|
|
|
"include", // Since Qt 5.3
|
2013-07-25 11:24:53 +04:00
|
|
|
"g"
|
|
|
|
};
|
|
|
|
std::vector<std::string> extraOpts;
|
|
|
|
for(std::vector<std::string>::const_iterator it = fileOpts.begin();
|
|
|
|
it != fileOpts.end(); ++it)
|
|
|
|
{
|
|
|
|
std::vector<std::string>::iterator existingIt
|
|
|
|
= std::find(opts.begin(), opts.end(), *it);
|
|
|
|
if (existingIt != opts.end())
|
|
|
|
{
|
|
|
|
const char *o = it->c_str();
|
|
|
|
if (*o == '-')
|
|
|
|
{
|
|
|
|
++o;
|
|
|
|
}
|
|
|
|
if (isQt5 && *o == '-')
|
|
|
|
{
|
|
|
|
++o;
|
|
|
|
}
|
|
|
|
if (std::find_if(cmArrayBegin(valueOptions), cmArrayEnd(valueOptions),
|
2014-01-17 22:38:27 +04:00
|
|
|
cmStrCmp(*it)) != cmArrayEnd(valueOptions))
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
|
|
|
assert(existingIt + 1 != opts.end());
|
|
|
|
*(existingIt + 1) = *(it + 1);
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
extraOpts.push_back(*it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
opts.insert(opts.end(), extraOpts.begin(), extraOpts.end());
|
|
|
|
}
|
|
|
|
|
2014-02-10 07:48:34 +04:00
|
|
|
static void GetUicOpts(cmTarget const* target, const std::string& config,
|
2013-11-20 17:54:39 +04:00
|
|
|
std::string &optString)
|
|
|
|
{
|
|
|
|
std::vector<std::string> opts;
|
|
|
|
target->GetAutoUicOptions(opts, config);
|
2015-01-07 10:58:51 +03:00
|
|
|
optString = cmJoin(opts, ";");
|
2013-11-20 17:54:39 +04:00
|
|
|
}
|
|
|
|
|
2013-12-10 18:45:27 +04:00
|
|
|
void cmQtAutoGenerators::SetupAutoUicTarget(cmTarget const* target,
|
2013-11-20 17:54:39 +04:00
|
|
|
std::map<std::string, std::string> &configUicOptions)
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
|
|
|
cmMakefile *makefile = target->GetMakefile();
|
|
|
|
|
2014-02-10 09:21:34 +04:00
|
|
|
std::set<std::string> skipped;
|
2014-01-24 19:32:34 +04:00
|
|
|
std::vector<std::string> skipVec;
|
2014-03-11 03:04:11 +04:00
|
|
|
cmSystemTools::ExpandListArgument(this->SkipUic, skipVec);
|
2014-11-25 18:33:00 +03:00
|
|
|
skipped.insert(skipVec.begin(), skipVec.end());
|
2013-07-25 11:24:53 +04:00
|
|
|
|
|
|
|
makefile->AddDefinition("_skip_uic",
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(this->SkipUic).c_str());
|
2013-07-25 11:24:53 +04:00
|
|
|
|
|
|
|
std::vector<cmSourceFile*> uiFilesWithOptions
|
|
|
|
= makefile->GetQtUiFilesWithOptions();
|
|
|
|
|
|
|
|
const char *qtVersion = makefile->GetDefinition("_target_qt_version");
|
|
|
|
|
2013-11-20 17:54:39 +04:00
|
|
|
std::string _uic_opts;
|
|
|
|
std::vector<std::string> configs;
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config = makefile->GetConfigurations(configs);
|
2013-11-20 17:54:39 +04:00
|
|
|
GetUicOpts(target, config, _uic_opts);
|
|
|
|
|
|
|
|
if (!_uic_opts.empty())
|
|
|
|
{
|
2015-05-16 01:55:21 +03:00
|
|
|
_uic_opts = cmOutputConverter::EscapeForCMake(_uic_opts);
|
2013-11-20 17:54:39 +04:00
|
|
|
makefile->AddDefinition("_uic_target_options", _uic_opts.c_str());
|
|
|
|
}
|
|
|
|
for (std::vector<std::string>::const_iterator li = configs.begin();
|
|
|
|
li != configs.end(); ++li)
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
2013-11-20 17:54:39 +04:00
|
|
|
std::string config_uic_opts;
|
2014-03-11 03:04:11 +04:00
|
|
|
GetUicOpts(target, *li, config_uic_opts);
|
2013-11-20 17:54:39 +04:00
|
|
|
if (config_uic_opts != _uic_opts)
|
|
|
|
{
|
|
|
|
configUicOptions[*li] =
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(config_uic_opts);
|
2013-11-20 17:54:39 +04:00
|
|
|
if(_uic_opts.empty())
|
|
|
|
{
|
|
|
|
_uic_opts = config_uic_opts;
|
|
|
|
}
|
|
|
|
}
|
2013-07-25 11:24:53 +04:00
|
|
|
}
|
|
|
|
|
2014-01-24 19:32:34 +04:00
|
|
|
std::string uiFileFiles;
|
|
|
|
std::string uiFileOptions;
|
|
|
|
const char* sep = "";
|
|
|
|
|
2013-07-25 11:24:53 +04:00
|
|
|
for(std::vector<cmSourceFile*>::const_iterator fileIt =
|
|
|
|
uiFilesWithOptions.begin();
|
|
|
|
fileIt != uiFilesWithOptions.end();
|
|
|
|
++fileIt)
|
|
|
|
{
|
|
|
|
cmSourceFile* sf = *fileIt;
|
|
|
|
std::string absFile = cmsys::SystemTools::GetRealPath(
|
2014-10-15 16:54:05 +04:00
|
|
|
sf->GetFullPath());
|
2013-07-25 11:24:53 +04:00
|
|
|
|
|
|
|
if (!skipped.insert(absFile).second)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
uiFileFiles += sep;
|
|
|
|
uiFileFiles += absFile;
|
|
|
|
uiFileOptions += sep;
|
|
|
|
std::string opts = sf->GetProperty("AUTOUIC_OPTIONS");
|
|
|
|
cmSystemTools::ReplaceString(opts, ";", "@list_sep@");
|
|
|
|
uiFileOptions += opts;
|
|
|
|
sep = ";";
|
|
|
|
}
|
|
|
|
|
|
|
|
makefile->AddDefinition("_qt_uic_options_files",
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(uiFileFiles).c_str());
|
2013-07-25 11:24:53 +04:00
|
|
|
makefile->AddDefinition("_qt_uic_options_options",
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(uiFileOptions).c_str());
|
2013-07-25 11:24:53 +04:00
|
|
|
|
2014-02-07 02:31:47 +04:00
|
|
|
std::string targetName = target->GetName();
|
2013-07-25 11:24:53 +04:00
|
|
|
if (strcmp(qtVersion, "5") == 0)
|
|
|
|
{
|
|
|
|
cmTarget *qt5Uic = makefile->FindTargetToUse("Qt5::uic");
|
|
|
|
if (!qt5Uic)
|
|
|
|
{
|
|
|
|
// Project does not use Qt5Widgets, but has AUTOUIC ON anyway
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-08 16:55:46 +04:00
|
|
|
makefile->AddDefinition("_qt_uic_executable", qt5Uic->GetLocation(""));
|
2013-07-25 11:24:53 +04:00
|
|
|
}
|
|
|
|
}
|
2014-01-24 16:02:16 +04:00
|
|
|
else if (strcmp(qtVersion, "4") == 0)
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
2014-01-24 16:02:16 +04:00
|
|
|
cmTarget *qt4Uic = makefile->FindTargetToUse("Qt4::uic");
|
|
|
|
if (!qt4Uic)
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
2014-01-24 16:02:16 +04:00
|
|
|
cmSystemTools::Error("Qt4::uic target not found ",
|
2014-02-07 02:31:47 +04:00
|
|
|
targetName.c_str());
|
2014-01-24 16:02:16 +04:00
|
|
|
return;
|
2013-07-25 11:24:53 +04:00
|
|
|
}
|
2014-03-08 16:55:46 +04:00
|
|
|
makefile->AddDefinition("_qt_uic_executable", qt4Uic->GetLocation(""));
|
2014-01-24 16:02:16 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("The CMAKE_AUTOUIC feature supports only Qt 4 and "
|
2014-02-07 02:31:47 +04:00
|
|
|
"Qt 5 ", targetName.c_str());
|
2013-07-25 11:24:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-15 16:41:07 +04:00
|
|
|
void cmQtAutoGenerators::MergeRccOptions(std::vector<std::string> &opts,
|
|
|
|
const std::vector<std::string> &fileOpts,
|
|
|
|
bool isQt5)
|
|
|
|
{
|
|
|
|
static const char* valueOptions[] = {
|
|
|
|
"name",
|
|
|
|
"root",
|
|
|
|
"compress",
|
|
|
|
"threshold"
|
|
|
|
};
|
|
|
|
std::vector<std::string> extraOpts;
|
|
|
|
for(std::vector<std::string>::const_iterator it = fileOpts.begin();
|
|
|
|
it != fileOpts.end(); ++it)
|
|
|
|
{
|
|
|
|
std::vector<std::string>::iterator existingIt
|
|
|
|
= std::find(opts.begin(), opts.end(), *it);
|
|
|
|
if (existingIt != opts.end())
|
|
|
|
{
|
|
|
|
const char *o = it->c_str();
|
|
|
|
if (*o == '-')
|
|
|
|
{
|
|
|
|
++o;
|
|
|
|
}
|
|
|
|
if (isQt5 && *o == '-')
|
|
|
|
{
|
|
|
|
++o;
|
|
|
|
}
|
|
|
|
if (std::find_if(cmArrayBegin(valueOptions), cmArrayEnd(valueOptions),
|
2014-01-17 22:38:27 +04:00
|
|
|
cmStrCmp(*it)) != cmArrayEnd(valueOptions))
|
2013-09-15 16:41:07 +04:00
|
|
|
{
|
|
|
|
assert(existingIt + 1 != opts.end());
|
|
|
|
*(existingIt + 1) = *(it + 1);
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
extraOpts.push_back(*it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
opts.insert(opts.end(), extraOpts.begin(), extraOpts.end());
|
|
|
|
}
|
|
|
|
|
2013-12-10 18:45:27 +04:00
|
|
|
void cmQtAutoGenerators::SetupAutoRccTarget(cmTarget const* target)
|
2013-09-15 16:41:07 +04:00
|
|
|
{
|
|
|
|
std::string _rcc_files;
|
|
|
|
const char* sepRccFiles = "";
|
|
|
|
cmMakefile *makefile = target->GetMakefile();
|
|
|
|
|
2013-07-14 20:22:57 +04:00
|
|
|
std::vector<cmSourceFile*> srcFiles;
|
2014-02-13 20:25:00 +04:00
|
|
|
target->GetConfigCommonSourceFiles(srcFiles);
|
2013-09-15 16:41:07 +04:00
|
|
|
|
2014-09-17 04:42:30 +04:00
|
|
|
std::string qrcInputs;
|
|
|
|
const char* qrcInputsSep = "";
|
|
|
|
|
2013-09-15 16:41:07 +04:00
|
|
|
std::string rccFileFiles;
|
|
|
|
std::string rccFileOptions;
|
2014-09-17 04:42:30 +04:00
|
|
|
const char *optionSep = "";
|
2013-09-15 16:41:07 +04:00
|
|
|
|
|
|
|
const char *qtVersion = makefile->GetDefinition("_target_qt_version");
|
|
|
|
|
|
|
|
std::vector<std::string> rccOptions;
|
|
|
|
if (const char* opts = target->GetProperty("AUTORCC_OPTIONS"))
|
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(opts, rccOptions);
|
|
|
|
}
|
2014-09-17 04:42:30 +04:00
|
|
|
std::string qtMajorVersion = makefile->GetSafeDefinition("QT_VERSION_MAJOR");
|
|
|
|
if (qtMajorVersion == "")
|
|
|
|
{
|
|
|
|
qtMajorVersion = makefile->GetSafeDefinition("Qt5Core_VERSION_MAJOR");
|
|
|
|
}
|
2013-09-15 16:41:07 +04:00
|
|
|
|
|
|
|
for(std::vector<cmSourceFile*>::const_iterator fileIt = srcFiles.begin();
|
|
|
|
fileIt != srcFiles.end();
|
|
|
|
++fileIt)
|
|
|
|
{
|
|
|
|
cmSourceFile* sf = *fileIt;
|
|
|
|
std::string ext = sf->GetExtension();
|
|
|
|
if (ext == "qrc")
|
|
|
|
{
|
|
|
|
std::string absFile = cmsys::SystemTools::GetRealPath(
|
2014-10-15 16:54:05 +04:00
|
|
|
sf->GetFullPath());
|
2013-09-15 16:41:07 +04:00
|
|
|
bool skip = cmSystemTools::IsOn(sf->GetPropertyForUser("SKIP_AUTORCC"));
|
|
|
|
|
|
|
|
if (!skip)
|
|
|
|
{
|
|
|
|
_rcc_files += sepRccFiles;
|
|
|
|
_rcc_files += absFile;
|
|
|
|
sepRccFiles = ";";
|
|
|
|
|
|
|
|
if (const char *prop = sf->GetProperty("AUTORCC_OPTIONS"))
|
|
|
|
{
|
|
|
|
std::vector<std::string> optsVec;
|
|
|
|
cmSystemTools::ExpandListArgument(prop, optsVec);
|
|
|
|
this->MergeRccOptions(rccOptions, optsVec,
|
|
|
|
strcmp(qtVersion, "5") == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!rccOptions.empty())
|
|
|
|
{
|
2014-09-17 04:42:30 +04:00
|
|
|
rccFileFiles += optionSep;
|
2013-09-15 16:41:07 +04:00
|
|
|
rccFileFiles += absFile;
|
2014-09-17 04:42:30 +04:00
|
|
|
rccFileOptions += optionSep;
|
2013-09-15 16:41:07 +04:00
|
|
|
}
|
|
|
|
const char *listSep = "";
|
|
|
|
for(std::vector<std::string>::const_iterator it = rccOptions.begin();
|
|
|
|
it != rccOptions.end();
|
|
|
|
++it)
|
|
|
|
{
|
|
|
|
rccFileOptions += listSep;
|
|
|
|
rccFileOptions += *it;
|
|
|
|
listSep = "@list_sep@";
|
|
|
|
}
|
2014-09-17 04:42:30 +04:00
|
|
|
optionSep = ";";
|
|
|
|
|
|
|
|
std::vector<std::string> depends;
|
|
|
|
|
|
|
|
std::string entriesList;
|
|
|
|
if (!cmSystemTools::IsOn(sf->GetPropertyForUser("GENERATED")))
|
|
|
|
{
|
|
|
|
if (qtMajorVersion == "5")
|
|
|
|
{
|
|
|
|
entriesList = this->ListQt5RccInputs(sf, target, depends);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
entriesList = this->ListQt4RccInputs(sf, depends);
|
|
|
|
}
|
|
|
|
if (entriesList.empty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
qrcInputs += qrcInputsSep;
|
|
|
|
qrcInputs += entriesList;
|
|
|
|
qrcInputsSep = ";";
|
2013-09-15 16:41:07 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-09-17 04:42:30 +04:00
|
|
|
makefile->AddDefinition("_qt_rcc_inputs_" + target->GetName(),
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(qrcInputs).c_str());
|
2013-09-15 16:41:07 +04:00
|
|
|
|
|
|
|
makefile->AddDefinition("_rcc_files",
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(_rcc_files).c_str());
|
2013-09-15 16:41:07 +04:00
|
|
|
|
|
|
|
makefile->AddDefinition("_qt_rcc_options_files",
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(rccFileFiles).c_str());
|
2013-09-15 16:41:07 +04:00
|
|
|
makefile->AddDefinition("_qt_rcc_options_options",
|
2015-05-16 01:55:21 +03:00
|
|
|
cmOutputConverter::EscapeForCMake(rccFileOptions).c_str());
|
2013-09-15 16:41:07 +04:00
|
|
|
|
2014-09-23 02:54:08 +04:00
|
|
|
makefile->AddDefinition("_qt_rcc_executable",
|
|
|
|
this->GetRccExecutable(target).c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string cmQtAutoGenerators::GetRccExecutable(cmTarget const* target)
|
|
|
|
{
|
|
|
|
cmMakefile *makefile = target->GetMakefile();
|
|
|
|
const char *qtVersion = makefile->GetDefinition("_target_qt_version");
|
|
|
|
if (!qtVersion)
|
|
|
|
{
|
|
|
|
qtVersion = makefile->GetDefinition("Qt5Core_VERSION_MAJOR");
|
|
|
|
if (!qtVersion)
|
|
|
|
{
|
|
|
|
qtVersion = makefile->GetDefinition("QT_VERSION_MAJOR");
|
|
|
|
}
|
|
|
|
if (const char *targetQtVersion =
|
|
|
|
target->GetLinkInterfaceDependentStringProperty("QT_MAJOR_VERSION",
|
|
|
|
""))
|
|
|
|
{
|
|
|
|
qtVersion = targetQtVersion;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-07 02:31:47 +04:00
|
|
|
std::string targetName = target->GetName();
|
2013-09-15 16:41:07 +04:00
|
|
|
if (strcmp(qtVersion, "5") == 0)
|
|
|
|
{
|
|
|
|
cmTarget *qt5Rcc = makefile->FindTargetToUse("Qt5::rcc");
|
|
|
|
if (!qt5Rcc)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Qt5::rcc target not found ",
|
2014-02-07 02:31:47 +04:00
|
|
|
targetName.c_str());
|
2014-09-23 02:54:08 +04:00
|
|
|
return std::string();
|
2013-09-15 16:41:07 +04:00
|
|
|
}
|
2014-09-23 02:54:08 +04:00
|
|
|
return qt5Rcc->GetLocation("");
|
2013-09-15 16:41:07 +04:00
|
|
|
}
|
2014-01-24 16:02:16 +04:00
|
|
|
else if (strcmp(qtVersion, "4") == 0)
|
2013-09-15 16:41:07 +04:00
|
|
|
{
|
2014-01-24 16:02:16 +04:00
|
|
|
cmTarget *qt4Rcc = makefile->FindTargetToUse("Qt4::rcc");
|
|
|
|
if (!qt4Rcc)
|
2013-09-15 16:41:07 +04:00
|
|
|
{
|
2014-01-24 16:02:16 +04:00
|
|
|
cmSystemTools::Error("Qt4::rcc target not found ",
|
2014-02-07 02:31:47 +04:00
|
|
|
targetName.c_str());
|
2014-09-23 02:54:08 +04:00
|
|
|
return std::string();
|
2013-09-15 16:41:07 +04:00
|
|
|
}
|
2014-09-23 02:54:08 +04:00
|
|
|
return qt4Rcc->GetLocation("");
|
2013-09-15 16:41:07 +04:00
|
|
|
}
|
2014-09-23 02:54:08 +04:00
|
|
|
|
|
|
|
cmSystemTools::Error("The CMAKE_AUTORCC feature supports only Qt 4 and "
|
|
|
|
"Qt 5 ", targetName.c_str());
|
|
|
|
return std::string();
|
2013-09-15 16:41:07 +04:00
|
|
|
}
|
|
|
|
|
2015-05-20 01:17:30 +03:00
|
|
|
bool cmQtAutoGenerators::Run(const std::string& targetDirectory,
|
|
|
|
const std::string& config)
|
2014-01-24 17:00:34 +04:00
|
|
|
{
|
2015-05-20 01:17:30 +03:00
|
|
|
bool success = true;
|
|
|
|
cmake cm;
|
|
|
|
cm.SetHomeOutputDirectory(targetDirectory);
|
|
|
|
cm.SetHomeDirectory(targetDirectory);
|
2015-05-24 12:31:14 +03:00
|
|
|
cmGlobalGenerator gg(&cm);
|
2014-01-24 17:00:34 +04:00
|
|
|
|
2015-05-20 01:21:20 +03:00
|
|
|
cmLocalGenerator* lg = gg.MakeLocalGenerator();
|
2015-04-16 21:06:54 +03:00
|
|
|
lg->GetMakefile()->SetCurrentBinaryDirectory(targetDirectory);
|
|
|
|
lg->GetMakefile()->SetCurrentSourceDirectory(targetDirectory);
|
2015-05-31 00:50:28 +03:00
|
|
|
gg.SetCurrentMakefile(lg->GetMakefile());
|
2014-01-24 17:00:34 +04:00
|
|
|
|
2015-05-20 01:18:19 +03:00
|
|
|
this->ReadAutogenInfoFile(lg->GetMakefile(), targetDirectory, config);
|
|
|
|
this->ReadOldMocDefinitionsFile(lg->GetMakefile(), targetDirectory);
|
2011-08-07 19:16:00 +04:00
|
|
|
|
2011-08-08 17:20:13 +04:00
|
|
|
this->Init();
|
2011-08-07 19:16:00 +04:00
|
|
|
|
2011-11-01 17:48:45 +04:00
|
|
|
if (this->QtMajorVersion == "4" || this->QtMajorVersion == "5")
|
2011-08-07 19:16:00 +04:00
|
|
|
{
|
2015-05-20 01:18:19 +03:00
|
|
|
success = this->RunAutogen(lg->GetMakefile());
|
2011-08-07 19:16:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
this->WriteOldMocDefinitionsFile(targetDirectory);
|
2011-08-08 17:20:13 +04:00
|
|
|
|
2015-05-20 01:20:21 +03:00
|
|
|
delete lg;
|
2012-06-15 00:27:22 +04:00
|
|
|
return success;
|
2011-08-07 19:16:00 +04:00
|
|
|
}
|
|
|
|
|
2013-10-02 15:50:31 +04:00
|
|
|
bool cmQtAutoGenerators::ReadAutogenInfoFile(cmMakefile* makefile,
|
2014-02-25 02:38:30 +04:00
|
|
|
const std::string& targetDirectory,
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config)
|
2011-08-07 19:16:00 +04:00
|
|
|
{
|
2014-02-25 02:38:30 +04:00
|
|
|
std::string filename(
|
2014-10-15 16:54:05 +04:00
|
|
|
cmSystemTools::CollapseFullPath(targetDirectory));
|
2011-08-07 19:16:00 +04:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(filename);
|
2013-10-11 16:26:55 +04:00
|
|
|
filename += "/AutogenInfo.cmake";
|
2011-08-07 19:16:00 +04:00
|
|
|
|
2015-04-18 15:50:37 +03:00
|
|
|
if (!makefile->ReadListFile(filename.c_str()))
|
2011-08-07 19:16:00 +04:00
|
|
|
{
|
2013-06-21 15:51:58 +04:00
|
|
|
cmSystemTools::Error("Error processing file: ", filename.c_str());
|
2011-08-08 17:20:13 +04:00
|
|
|
return false;
|
2011-08-07 19:16:00 +04:00
|
|
|
}
|
2011-08-08 17:20:13 +04:00
|
|
|
|
|
|
|
this->QtMajorVersion = makefile->GetSafeDefinition("AM_QT_VERSION_MAJOR");
|
2011-11-10 02:17:20 +04:00
|
|
|
if (this->QtMajorVersion == "")
|
|
|
|
{
|
2011-11-10 03:57:21 +04:00
|
|
|
this->QtMajorVersion = makefile->GetSafeDefinition(
|
2011-11-26 18:15:33 +04:00
|
|
|
"AM_Qt5Core_VERSION_MAJOR");
|
2011-11-10 02:17:20 +04:00
|
|
|
}
|
2011-08-08 17:20:13 +04:00
|
|
|
this->Sources = makefile->GetSafeDefinition("AM_SOURCES");
|
2014-09-23 02:57:48 +04:00
|
|
|
{
|
|
|
|
std::string rccSources = makefile->GetSafeDefinition("AM_RCC_SOURCES");
|
|
|
|
cmSystemTools::ExpandListArgument(rccSources, this->RccSources);
|
|
|
|
}
|
2013-07-25 11:24:53 +04:00
|
|
|
this->SkipMoc = makefile->GetSafeDefinition("AM_SKIP_MOC");
|
|
|
|
this->SkipUic = makefile->GetSafeDefinition("AM_SKIP_UIC");
|
2011-08-09 11:11:53 +04:00
|
|
|
this->Headers = makefile->GetSafeDefinition("AM_HEADERS");
|
2011-08-10 22:45:22 +04:00
|
|
|
this->IncludeProjectDirsBefore = makefile->IsOn(
|
|
|
|
"AM_CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE");
|
2011-08-08 17:20:13 +04:00
|
|
|
this->Srcdir = makefile->GetSafeDefinition("AM_CMAKE_CURRENT_SOURCE_DIR");
|
2011-08-25 23:39:51 +04:00
|
|
|
this->Builddir = makefile->GetSafeDefinition("AM_CMAKE_CURRENT_BINARY_DIR");
|
2011-08-08 17:20:13 +04:00
|
|
|
this->MocExecutable = makefile->GetSafeDefinition("AM_QT_MOC_EXECUTABLE");
|
2013-07-25 11:24:53 +04:00
|
|
|
this->UicExecutable = makefile->GetSafeDefinition("AM_QT_UIC_EXECUTABLE");
|
2013-09-15 16:41:07 +04:00
|
|
|
this->RccExecutable = makefile->GetSafeDefinition("AM_QT_RCC_EXECUTABLE");
|
2014-01-24 16:19:36 +04:00
|
|
|
{
|
2013-06-11 17:52:48 +04:00
|
|
|
std::string compileDefsPropOrig = "AM_MOC_COMPILE_DEFINITIONS";
|
|
|
|
std::string compileDefsProp = compileDefsPropOrig;
|
2014-02-10 07:48:34 +04:00
|
|
|
if(!config.empty())
|
2013-06-11 17:52:48 +04:00
|
|
|
{
|
|
|
|
compileDefsProp += "_";
|
|
|
|
compileDefsProp += config;
|
|
|
|
}
|
2014-03-11 03:04:11 +04:00
|
|
|
const char *compileDefs = makefile->GetDefinition(compileDefsProp);
|
2013-06-11 17:52:48 +04:00
|
|
|
this->MocCompileDefinitionsStr = compileDefs ? compileDefs
|
2014-03-11 03:04:11 +04:00
|
|
|
: makefile->GetSafeDefinition(compileDefsPropOrig);
|
2014-01-24 16:19:36 +04:00
|
|
|
}
|
|
|
|
{
|
2013-06-11 17:52:48 +04:00
|
|
|
std::string includesPropOrig = "AM_MOC_INCLUDES";
|
|
|
|
std::string includesProp = includesPropOrig;
|
2014-02-10 07:48:34 +04:00
|
|
|
if(!config.empty())
|
2013-06-11 17:52:48 +04:00
|
|
|
{
|
|
|
|
includesProp += "_";
|
|
|
|
includesProp += config;
|
|
|
|
}
|
2014-03-11 03:04:11 +04:00
|
|
|
const char *includes = makefile->GetDefinition(includesProp);
|
2013-06-11 17:52:48 +04:00
|
|
|
this->MocIncludesStr = includes ? includes
|
2014-03-11 03:04:11 +04:00
|
|
|
: makefile->GetSafeDefinition(includesPropOrig);
|
2014-01-24 16:19:36 +04:00
|
|
|
}
|
2011-11-01 17:33:11 +04:00
|
|
|
this->MocOptionsStr = makefile->GetSafeDefinition("AM_MOC_OPTIONS");
|
2011-08-08 17:20:13 +04:00
|
|
|
this->ProjectBinaryDir = makefile->GetSafeDefinition("AM_CMAKE_BINARY_DIR");
|
|
|
|
this->ProjectSourceDir = makefile->GetSafeDefinition("AM_CMAKE_SOURCE_DIR");
|
|
|
|
this->TargetName = makefile->GetSafeDefinition("AM_TARGET_NAME");
|
2014-04-17 12:50:50 +04:00
|
|
|
this->OriginTargetName
|
|
|
|
= makefile->GetSafeDefinition("AM_ORIGIN_TARGET_NAME");
|
2011-08-08 17:20:13 +04:00
|
|
|
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
|
|
|
const char *uicOptionsFiles
|
|
|
|
= makefile->GetSafeDefinition("AM_UIC_OPTIONS_FILES");
|
2013-11-20 17:54:39 +04:00
|
|
|
std::string uicOptionsPropOrig = "AM_UIC_TARGET_OPTIONS";
|
|
|
|
std::string uicOptionsProp = uicOptionsPropOrig;
|
2014-02-10 07:48:34 +04:00
|
|
|
if(!config.empty())
|
2013-11-20 17:54:39 +04:00
|
|
|
{
|
|
|
|
uicOptionsProp += "_";
|
|
|
|
uicOptionsProp += config;
|
|
|
|
}
|
2013-07-25 11:24:53 +04:00
|
|
|
const char *uicTargetOptions
|
2014-03-11 03:04:11 +04:00
|
|
|
= makefile->GetSafeDefinition(uicOptionsProp);
|
2013-11-20 17:54:39 +04:00
|
|
|
cmSystemTools::ExpandListArgument(
|
|
|
|
uicTargetOptions ? uicTargetOptions
|
2014-03-11 03:04:11 +04:00
|
|
|
: makefile->GetSafeDefinition(uicOptionsPropOrig),
|
2013-11-20 17:54:39 +04:00
|
|
|
this->UicTargetOptions);
|
2013-07-25 11:24:53 +04:00
|
|
|
const char *uicOptionsOptions
|
|
|
|
= makefile->GetSafeDefinition("AM_UIC_OPTIONS_OPTIONS");
|
|
|
|
std::vector<std::string> uicFilesVec;
|
|
|
|
cmSystemTools::ExpandListArgument(uicOptionsFiles, uicFilesVec);
|
|
|
|
std::vector<std::string> uicOptionsVec;
|
|
|
|
cmSystemTools::ExpandListArgument(uicOptionsOptions, uicOptionsVec);
|
|
|
|
if (uicFilesVec.size() != uicOptionsVec.size())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (std::vector<std::string>::iterator fileIt = uicFilesVec.begin(),
|
|
|
|
optionIt = uicOptionsVec.begin();
|
|
|
|
fileIt != uicFilesVec.end();
|
|
|
|
++fileIt, ++optionIt)
|
|
|
|
{
|
|
|
|
cmSystemTools::ReplaceString(*optionIt, "@list_sep@", ";");
|
|
|
|
this->UicOptions[*fileIt] = *optionIt;
|
|
|
|
}
|
|
|
|
}
|
2013-09-15 16:41:07 +04:00
|
|
|
{
|
|
|
|
const char *rccOptionsFiles
|
|
|
|
= makefile->GetSafeDefinition("AM_RCC_OPTIONS_FILES");
|
|
|
|
const char *rccOptionsOptions
|
|
|
|
= makefile->GetSafeDefinition("AM_RCC_OPTIONS_OPTIONS");
|
|
|
|
std::vector<std::string> rccFilesVec;
|
|
|
|
cmSystemTools::ExpandListArgument(rccOptionsFiles, rccFilesVec);
|
|
|
|
std::vector<std::string> rccOptionsVec;
|
|
|
|
cmSystemTools::ExpandListArgument(rccOptionsOptions, rccOptionsVec);
|
|
|
|
if (rccFilesVec.size() != rccOptionsVec.size())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (std::vector<std::string>::iterator fileIt = rccFilesVec.begin(),
|
|
|
|
optionIt = rccOptionsVec.begin();
|
|
|
|
fileIt != rccFilesVec.end();
|
|
|
|
++fileIt, ++optionIt)
|
|
|
|
{
|
|
|
|
cmSystemTools::ReplaceString(*optionIt, "@list_sep@", ";");
|
|
|
|
this->RccOptions[*fileIt] = *optionIt;
|
|
|
|
}
|
2014-09-17 04:42:30 +04:00
|
|
|
|
|
|
|
const char *rccInputs = makefile->GetSafeDefinition("AM_RCC_INPUTS");
|
|
|
|
std::vector<std::string> rccInputLists;
|
|
|
|
cmSystemTools::ExpandListArgument(rccInputs, rccInputLists);
|
|
|
|
|
|
|
|
if (this->RccSources.size() != rccInputLists.size())
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Error processing file: ", filename.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (std::vector<std::string>::iterator fileIt = this->RccSources.begin(),
|
|
|
|
inputIt = rccInputLists.begin();
|
|
|
|
fileIt != this->RccSources.end();
|
|
|
|
++fileIt, ++inputIt)
|
|
|
|
{
|
|
|
|
cmSystemTools::ReplaceString(*inputIt, "@list_sep@", ";");
|
|
|
|
std::vector<std::string> rccInputFiles;
|
|
|
|
cmSystemTools::ExpandListArgument(*inputIt, rccInputFiles);
|
|
|
|
|
|
|
|
this->RccInputs[*fileIt] = rccInputFiles;
|
|
|
|
}
|
2013-09-15 16:41:07 +04:00
|
|
|
}
|
2012-08-27 23:39:50 +04:00
|
|
|
this->CurrentCompileSettingsStr = this->MakeCompileSettingsString(makefile);
|
|
|
|
|
2011-12-14 01:11:47 +04:00
|
|
|
this->RelaxedMode = makefile->IsOn("AM_RELAXED_MODE");
|
2011-12-03 01:08:06 +04:00
|
|
|
|
2011-08-07 19:16:00 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
std::string cmQtAutoGenerators::MakeCompileSettingsString(cmMakefile* makefile)
|
2012-08-27 23:39:50 +04:00
|
|
|
{
|
|
|
|
std::string s;
|
2012-09-06 00:13:30 +04:00
|
|
|
s += makefile->GetSafeDefinition("AM_MOC_COMPILE_DEFINITIONS");
|
2012-08-27 23:39:50 +04:00
|
|
|
s += " ~~~ ";
|
|
|
|
s += makefile->GetSafeDefinition("AM_MOC_INCLUDES");
|
|
|
|
s += " ~~~ ";
|
|
|
|
s += makefile->GetSafeDefinition("AM_MOC_OPTIONS");
|
|
|
|
s += " ~~~ ";
|
|
|
|
s += makefile->IsOn("AM_CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE") ? "TRUE"
|
|
|
|
: "FALSE";
|
|
|
|
s += " ~~~ ";
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
bool cmQtAutoGenerators::ReadOldMocDefinitionsFile(cmMakefile* makefile,
|
2014-02-25 02:38:30 +04:00
|
|
|
const std::string& targetDirectory)
|
2011-08-07 19:16:00 +04:00
|
|
|
{
|
2014-02-25 02:38:30 +04:00
|
|
|
std::string filename(
|
2014-10-15 16:54:05 +04:00
|
|
|
cmSystemTools::CollapseFullPath(targetDirectory));
|
2011-08-07 19:16:00 +04:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(filename);
|
|
|
|
filename += "/AutomocOldMocDefinitions.cmake";
|
|
|
|
|
2015-04-18 15:50:37 +03:00
|
|
|
if (makefile->ReadListFile(filename.c_str()))
|
2011-08-07 19:16:00 +04:00
|
|
|
{
|
2012-08-27 23:39:50 +04:00
|
|
|
this->OldCompileSettingsStr =
|
|
|
|
makefile->GetSafeDefinition("AM_OLD_COMPILE_SETTINGS");
|
2011-08-07 19:16:00 +04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
void
|
2014-02-25 02:38:30 +04:00
|
|
|
cmQtAutoGenerators::WriteOldMocDefinitionsFile(
|
|
|
|
const std::string& targetDirectory)
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
2014-02-25 02:38:30 +04:00
|
|
|
std::string filename(
|
2014-10-15 16:54:05 +04:00
|
|
|
cmSystemTools::CollapseFullPath(targetDirectory));
|
2011-08-08 17:20:13 +04:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(filename);
|
|
|
|
filename += "/AutomocOldMocDefinitions.cmake";
|
|
|
|
|
2014-10-05 00:19:13 +04:00
|
|
|
cmsys::ofstream outfile;
|
2011-08-08 17:20:13 +04:00
|
|
|
outfile.open(filename.c_str(),
|
2014-10-05 00:19:13 +04:00
|
|
|
std::ios::trunc);
|
2012-08-27 23:39:50 +04:00
|
|
|
outfile << "set(AM_OLD_COMPILE_SETTINGS "
|
2015-05-16 01:55:21 +03:00
|
|
|
<< cmOutputConverter::EscapeForCMake(
|
2014-03-11 03:04:11 +04:00
|
|
|
this->CurrentCompileSettingsStr) << ")\n";
|
2011-08-08 17:20:13 +04:00
|
|
|
|
|
|
|
outfile.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
void cmQtAutoGenerators::Init()
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
|
|
|
this->OutMocCppFilename = this->Builddir;
|
|
|
|
this->OutMocCppFilename += this->TargetName;
|
|
|
|
this->OutMocCppFilename += ".cpp";
|
|
|
|
|
|
|
|
std::vector<std::string> cdefList;
|
|
|
|
cmSystemTools::ExpandListArgument(this->MocCompileDefinitionsStr, cdefList);
|
2012-09-06 00:13:30 +04:00
|
|
|
for(std::vector<std::string>::const_iterator it = cdefList.begin();
|
|
|
|
it != cdefList.end();
|
|
|
|
++it)
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
2012-09-06 00:13:30 +04:00
|
|
|
this->MocDefinitions.push_back("-D" + (*it));
|
2011-08-08 17:20:13 +04:00
|
|
|
}
|
|
|
|
|
2011-11-01 17:33:11 +04:00
|
|
|
cmSystemTools::ExpandListArgument(this->MocOptionsStr, this->MocOptions);
|
|
|
|
|
2011-08-08 17:20:13 +04:00
|
|
|
std::vector<std::string> incPaths;
|
|
|
|
cmSystemTools::ExpandListArgument(this->MocIncludesStr, incPaths);
|
|
|
|
|
|
|
|
std::set<std::string> frameworkPaths;
|
|
|
|
for(std::vector<std::string>::const_iterator it = incPaths.begin();
|
|
|
|
it != incPaths.end();
|
|
|
|
++it)
|
|
|
|
{
|
|
|
|
const std::string &path = *it;
|
|
|
|
this->MocIncludes.push_back("-I" + path);
|
2014-11-14 02:04:57 +03:00
|
|
|
if (cmHasLiteralSuffix(path, ".framework/Headers"))
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
|
|
|
// Go up twice to get to the framework root
|
|
|
|
std::vector<std::string> pathComponents;
|
2014-10-15 16:54:05 +04:00
|
|
|
cmsys::SystemTools::SplitPath(path, pathComponents);
|
2011-08-08 17:20:13 +04:00
|
|
|
std::string frameworkPath =cmsys::SystemTools::JoinPath(
|
|
|
|
pathComponents.begin(), pathComponents.end() - 2);
|
|
|
|
frameworkPaths.insert(frameworkPath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (std::set<std::string>::const_iterator it = frameworkPaths.begin();
|
|
|
|
it != frameworkPaths.end(); ++it)
|
|
|
|
{
|
|
|
|
this->MocIncludes.push_back("-F");
|
|
|
|
this->MocIncludes.push_back(*it);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (this->IncludeProjectDirsBefore)
|
|
|
|
{
|
2014-11-14 02:03:28 +03:00
|
|
|
const std::string binDir = "-I" + this->ProjectBinaryDir;
|
2011-08-08 17:20:13 +04:00
|
|
|
|
|
|
|
const std::string srcDir = "-I" + this->ProjectSourceDir;
|
|
|
|
|
|
|
|
std::list<std::string> sortedMocIncludes;
|
|
|
|
std::list<std::string>::iterator it = this->MocIncludes.begin();
|
|
|
|
while (it != this->MocIncludes.end())
|
|
|
|
{
|
|
|
|
if (this->StartsWith(*it, binDir))
|
|
|
|
{
|
|
|
|
sortedMocIncludes.push_back(*it);
|
|
|
|
it = this->MocIncludes.erase(it);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
it = this->MocIncludes.begin();
|
|
|
|
while (it != this->MocIncludes.end())
|
|
|
|
{
|
|
|
|
if (this->StartsWith(*it, srcDir))
|
|
|
|
{
|
|
|
|
sortedMocIncludes.push_back(*it);
|
|
|
|
it = this->MocIncludes.erase(it);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sortedMocIncludes.insert(sortedMocIncludes.end(),
|
|
|
|
this->MocIncludes.begin(), this->MocIncludes.end());
|
|
|
|
this->MocIncludes = sortedMocIncludes;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-11 15:28:08 +04:00
|
|
|
bool cmQtAutoGenerators::RunAutogen(cmMakefile* makefile)
|
2011-08-07 19:16:00 +04:00
|
|
|
{
|
2011-08-08 17:20:13 +04:00
|
|
|
if (!cmsys::SystemTools::FileExists(this->OutMocCppFilename.c_str())
|
2012-08-27 23:39:50 +04:00
|
|
|
|| (this->OldCompileSettingsStr != this->CurrentCompileSettingsStr))
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
|
|
|
this->GenerateAll = true;
|
|
|
|
}
|
|
|
|
|
2011-08-10 22:45:22 +04:00
|
|
|
// the program goes through all .cpp files to see which moc files are
|
|
|
|
// included. It is not really interesting how the moc file is named, but
|
|
|
|
// what file the moc is created from. Once a moc is included the same moc
|
|
|
|
// may not be included in the _automoc.cpp file anymore. OTOH if there's a
|
|
|
|
// header containing Q_OBJECT where no corresponding moc file is included
|
|
|
|
// anywhere a moc_<filename>.cpp file is created and included in
|
|
|
|
// the _automoc.cpp file.
|
|
|
|
|
|
|
|
// key = moc source filepath, value = moc output filepath
|
|
|
|
std::map<std::string, std::string> includedMocs;
|
2011-10-22 21:38:39 +04:00
|
|
|
// collect all headers which may need to be mocced
|
|
|
|
std::set<std::string> headerFiles;
|
2011-08-08 17:20:13 +04:00
|
|
|
|
|
|
|
std::vector<std::string> sourceFiles;
|
|
|
|
cmSystemTools::ExpandListArgument(this->Sources, sourceFiles);
|
|
|
|
|
2013-02-10 20:58:29 +04:00
|
|
|
const std::vector<std::string>& headerExtensions =
|
|
|
|
makefile->GetHeaderExtensions();
|
2011-12-02 23:38:14 +04:00
|
|
|
|
2014-09-17 03:23:57 +04:00
|
|
|
std::map<std::string, std::vector<std::string> > includedUis;
|
|
|
|
std::map<std::string, std::vector<std::string> > skippedUis;
|
2013-07-25 11:24:53 +04:00
|
|
|
std::vector<std::string> uicSkipped;
|
|
|
|
cmSystemTools::ExpandListArgument(this->SkipUic, uicSkipped);
|
|
|
|
|
2011-08-08 17:20:13 +04:00
|
|
|
for (std::vector<std::string>::const_iterator it = sourceFiles.begin();
|
|
|
|
it != sourceFiles.end();
|
|
|
|
++it)
|
|
|
|
{
|
2013-07-25 11:24:53 +04:00
|
|
|
const bool skipUic = std::find(uicSkipped.begin(), uicSkipped.end(), *it)
|
|
|
|
!= uicSkipped.end();
|
2014-09-17 03:23:57 +04:00
|
|
|
std::map<std::string, std::vector<std::string> >& uiFiles
|
2014-02-02 16:19:27 +04:00
|
|
|
= skipUic ? skippedUis : includedUis;
|
2011-08-08 17:20:13 +04:00
|
|
|
const std::string &absFilename = *it;
|
|
|
|
if (this->Verbose)
|
|
|
|
{
|
2013-10-11 15:28:48 +04:00
|
|
|
std::cout << "AUTOGEN: Checking " << absFilename << std::endl;
|
2011-08-08 17:20:13 +04:00
|
|
|
}
|
2011-12-14 01:11:47 +04:00
|
|
|
if (this->RelaxedMode)
|
2011-12-02 23:59:44 +04:00
|
|
|
{
|
2013-07-25 11:24:53 +04:00
|
|
|
this->ParseCppFile(absFilename, headerExtensions, includedMocs,
|
|
|
|
uiFiles);
|
2011-12-02 23:59:44 +04:00
|
|
|
}
|
2011-12-03 01:08:06 +04:00
|
|
|
else
|
2011-12-02 23:59:44 +04:00
|
|
|
{
|
2013-07-25 11:24:53 +04:00
|
|
|
this->StrictParseCppFile(absFilename, headerExtensions, includedMocs,
|
|
|
|
uiFiles);
|
2011-12-02 23:59:44 +04:00
|
|
|
}
|
2011-12-02 23:38:14 +04:00
|
|
|
this->SearchHeadersForCppFile(absFilename, headerExtensions, headerFiles);
|
2011-08-09 11:11:53 +04:00
|
|
|
}
|
|
|
|
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
|
|
|
std::vector<std::string> mocSkipped;
|
|
|
|
cmSystemTools::ExpandListArgument(this->SkipMoc, mocSkipped);
|
|
|
|
for (std::vector<std::string>::const_iterator it = mocSkipped.begin();
|
|
|
|
it != mocSkipped.end();
|
|
|
|
++it)
|
|
|
|
{
|
|
|
|
if (std::find(uicSkipped.begin(), uicSkipped.end(), *it)
|
|
|
|
!= uicSkipped.end())
|
|
|
|
{
|
|
|
|
const std::string &absFilename = *it;
|
|
|
|
if (this->Verbose)
|
|
|
|
{
|
|
|
|
std::cout << "AUTOGEN: Checking " << absFilename << std::endl;
|
|
|
|
}
|
|
|
|
this->ParseForUic(absFilename, includedUis);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-22 21:38:39 +04:00
|
|
|
std::vector<std::string> headerFilesVec;
|
|
|
|
cmSystemTools::ExpandListArgument(this->Headers, headerFilesVec);
|
2014-11-25 18:33:00 +03:00
|
|
|
headerFiles.insert(headerFilesVec.begin(), headerFilesVec.end());
|
2011-08-08 17:20:13 +04:00
|
|
|
|
2011-10-22 21:38:39 +04:00
|
|
|
// key = moc source filepath, value = moc output filename
|
|
|
|
std::map<std::string, std::string> notIncludedMocs;
|
2013-07-25 11:24:53 +04:00
|
|
|
this->ParseHeaders(headerFiles, includedMocs, notIncludedMocs, includedUis);
|
2011-10-22 21:38:39 +04:00
|
|
|
|
2011-08-08 17:20:13 +04:00
|
|
|
// run moc on all the moc's that are #included in source files
|
2011-08-10 22:45:22 +04:00
|
|
|
for(std::map<std::string, std::string>::const_iterator
|
|
|
|
it = includedMocs.begin();
|
2011-08-08 17:20:13 +04:00
|
|
|
it != includedMocs.end();
|
|
|
|
++it)
|
|
|
|
{
|
|
|
|
this->GenerateMoc(it->first, it->second);
|
|
|
|
}
|
2014-09-17 03:23:57 +04:00
|
|
|
for(std::map<std::string, std::vector<std::string> >::const_iterator
|
2014-02-02 16:19:27 +04:00
|
|
|
it = includedUis.begin();
|
2013-07-25 11:24:53 +04:00
|
|
|
it != includedUis.end();
|
|
|
|
++it)
|
|
|
|
{
|
2014-09-17 03:23:57 +04:00
|
|
|
for (std::vector<std::string>::const_iterator nit = it->second.begin();
|
|
|
|
nit != it->second.end();
|
|
|
|
++nit)
|
|
|
|
{
|
|
|
|
this->GenerateUi(it->first, *nit);
|
|
|
|
}
|
2013-07-25 11:24:53 +04:00
|
|
|
}
|
2011-08-08 17:20:13 +04:00
|
|
|
|
2013-09-15 16:41:07 +04:00
|
|
|
if(!this->RccExecutable.empty())
|
|
|
|
{
|
|
|
|
this->GenerateQrc();
|
|
|
|
}
|
|
|
|
|
2012-06-06 23:14:40 +04:00
|
|
|
cmsys_ios::stringstream outStream;
|
2011-08-08 17:20:13 +04:00
|
|
|
outStream << "/* This file is autogenerated, do not edit*/\n";
|
|
|
|
|
|
|
|
bool automocCppChanged = false;
|
|
|
|
if (notIncludedMocs.empty())
|
|
|
|
{
|
|
|
|
outStream << "enum some_compilers { need_more_than_nothing };\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-08-10 22:45:22 +04:00
|
|
|
// run moc on the remaining headers and include them in
|
|
|
|
// the _automoc.cpp file
|
|
|
|
for(std::map<std::string, std::string>::const_iterator
|
|
|
|
it = notIncludedMocs.begin();
|
2011-08-08 17:20:13 +04:00
|
|
|
it != notIncludedMocs.end();
|
|
|
|
++it)
|
|
|
|
{
|
|
|
|
bool mocSuccess = this->GenerateMoc(it->first, it->second);
|
|
|
|
if (mocSuccess)
|
|
|
|
{
|
|
|
|
automocCppChanged = true;
|
|
|
|
}
|
|
|
|
outStream << "#include \"" << it->second << "\"\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this->RunMocFailed)
|
|
|
|
{
|
2013-12-18 21:48:44 +04:00
|
|
|
std::cerr << "moc failed..." << std::endl;
|
2011-08-08 17:20:13 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-07-25 11:24:53 +04:00
|
|
|
|
|
|
|
if (this->RunUicFailed)
|
|
|
|
{
|
2013-12-18 21:48:44 +04:00
|
|
|
std::cerr << "uic failed..." << std::endl;
|
2013-07-25 11:24:53 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-09-15 16:41:07 +04:00
|
|
|
if (this->RunRccFailed)
|
|
|
|
{
|
2013-12-18 21:48:44 +04:00
|
|
|
std::cerr << "rcc failed..." << std::endl;
|
2013-09-15 16:41:07 +04:00
|
|
|
return false;
|
|
|
|
}
|
2011-08-08 17:20:13 +04:00
|
|
|
outStream.flush();
|
|
|
|
std::string automocSource = outStream.str();
|
|
|
|
if (!automocCppChanged)
|
|
|
|
{
|
|
|
|
// compare contents of the _automoc.cpp file
|
2014-01-24 17:00:34 +04:00
|
|
|
const std::string oldContents = ReadAll(this->OutMocCppFilename);
|
2011-08-08 17:20:13 +04:00
|
|
|
if (oldContents == automocSource)
|
|
|
|
{
|
|
|
|
// nothing changed: don't touch the _automoc.cpp file
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// source file that includes all remaining moc files (_automoc.cpp file)
|
2014-10-05 00:19:13 +04:00
|
|
|
cmsys::ofstream outfile;
|
2011-08-08 17:20:13 +04:00
|
|
|
outfile.open(this->OutMocCppFilename.c_str(),
|
2014-10-05 00:19:13 +04:00
|
|
|
std::ios::trunc);
|
2011-08-08 17:20:13 +04:00
|
|
|
outfile << automocSource;
|
|
|
|
outfile.close();
|
|
|
|
|
2011-08-07 19:16:00 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
void cmQtAutoGenerators::ParseCppFile(const std::string& absFilename,
|
2014-09-17 03:23:57 +04:00
|
|
|
const std::vector<std::string>& headerExtensions,
|
|
|
|
std::map<std::string, std::string>& includedMocs,
|
|
|
|
std::map<std::string, std::vector<std::string> > &includedUis)
|
2011-08-10 23:00:53 +04:00
|
|
|
{
|
|
|
|
cmsys::RegularExpression mocIncludeRegExp(
|
|
|
|
"[\n][ \t]*#[ \t]*include[ \t]+"
|
|
|
|
"[\"<](([^ \">]+/)?moc_[^ \">/]+\\.cpp|[^ \">]+\\.moc)[\">]");
|
|
|
|
|
2014-01-24 17:00:34 +04:00
|
|
|
const std::string contentsString = ReadAll(absFilename);
|
2011-08-10 23:00:53 +04:00
|
|
|
if (contentsString.empty())
|
|
|
|
{
|
2013-10-11 15:28:48 +04:00
|
|
|
std::cerr << "AUTOGEN: warning: " << absFilename << ": file is empty\n"
|
2011-11-11 01:02:41 +04:00
|
|
|
<< std::endl;
|
2011-08-10 23:00:53 +04:00
|
|
|
return;
|
|
|
|
}
|
2014-01-24 20:01:59 +04:00
|
|
|
this->ParseForUic(absFilename, contentsString, includedUis);
|
|
|
|
if (this->MocExecutable.empty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-08-10 23:00:53 +04:00
|
|
|
const std::string absPath = cmsys::SystemTools::GetFilenamePath(
|
2014-10-15 16:54:05 +04:00
|
|
|
cmsys::SystemTools::GetRealPath(absFilename)) + '/';
|
2011-11-10 23:25:28 +04:00
|
|
|
const std::string scannedFileBasename = cmsys::SystemTools::
|
|
|
|
GetFilenameWithoutLastExtension(absFilename);
|
2013-08-07 18:48:09 +04:00
|
|
|
std::string macroName;
|
|
|
|
const bool requiresMoc = requiresMocing(contentsString, macroName);
|
2011-11-11 00:30:06 +04:00
|
|
|
bool dotMocIncluded = false;
|
|
|
|
bool mocUnderscoreIncluded = false;
|
|
|
|
std::string ownMocUnderscoreFile;
|
2011-11-29 23:55:36 +04:00
|
|
|
std::string ownDotMocFile;
|
2011-11-11 00:30:06 +04:00
|
|
|
std::string ownMocHeaderFile;
|
|
|
|
|
2011-08-19 22:16:53 +04:00
|
|
|
std::string::size_type matchOffset = 0;
|
2012-11-07 20:13:09 +04:00
|
|
|
// first a simple string check for "moc" is *much* faster than the regexp,
|
2011-11-11 01:54:44 +04:00
|
|
|
// and if the string search already fails, we don't have to try the
|
|
|
|
// expensive regexp
|
|
|
|
if ((strstr(contentsString.c_str(), "moc") != NULL)
|
|
|
|
&& (mocIncludeRegExp.find(contentsString)))
|
2011-08-10 23:00:53 +04:00
|
|
|
{
|
|
|
|
// for every moc include in the file
|
|
|
|
do
|
|
|
|
{
|
|
|
|
const std::string currentMoc = mocIncludeRegExp.match(1);
|
|
|
|
//std::cout << "found moc include: " << currentMoc << std::endl;
|
|
|
|
|
|
|
|
std::string basename = cmsys::SystemTools::
|
|
|
|
GetFilenameWithoutLastExtension(currentMoc);
|
2014-11-14 02:04:57 +03:00
|
|
|
const bool moc_style = cmHasLiteralPrefix(basename, "moc_");
|
2011-08-10 23:00:53 +04:00
|
|
|
|
|
|
|
// If the moc include is of the moc_foo.cpp style we expect
|
|
|
|
// the Q_OBJECT class declaration in a header file.
|
|
|
|
// If the moc include is of the foo.moc style we need to look for
|
|
|
|
// a Q_OBJECT macro in the current source file, if it contains the
|
2011-10-22 23:16:39 +04:00
|
|
|
// macro we generate the moc file from the source file.
|
2011-08-10 23:00:53 +04:00
|
|
|
// Q_OBJECT
|
2011-10-22 23:16:39 +04:00
|
|
|
if (moc_style)
|
2011-08-10 23:00:53 +04:00
|
|
|
{
|
2011-10-22 23:16:39 +04:00
|
|
|
// basename should be the part of the moc filename used for
|
|
|
|
// finding the correct header, so we need to remove the moc_ part
|
|
|
|
basename = basename.substr(4);
|
2011-11-23 00:35:08 +04:00
|
|
|
std::string mocSubDir = extractSubDir(absPath, currentMoc);
|
|
|
|
std::string headerToMoc = findMatchingHeader(
|
|
|
|
absPath, mocSubDir, basename, headerExtensions);
|
2011-11-10 23:56:46 +04:00
|
|
|
|
|
|
|
if (!headerToMoc.empty())
|
|
|
|
{
|
|
|
|
includedMocs[headerToMoc] = currentMoc;
|
2011-11-11 00:30:06 +04:00
|
|
|
if (basename == scannedFileBasename)
|
|
|
|
{
|
|
|
|
mocUnderscoreIncluded = true;
|
|
|
|
ownMocUnderscoreFile = currentMoc;
|
|
|
|
ownMocHeaderFile = headerToMoc;
|
|
|
|
}
|
2011-11-10 23:56:46 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-02-17 14:02:28 +04:00
|
|
|
std::cerr << "AUTOGEN: error: " << absFilename << ": The file "
|
2011-11-11 01:02:41 +04:00
|
|
|
<< "includes the moc file \"" << currentMoc << "\", "
|
|
|
|
<< "but could not find header \"" << basename
|
2011-11-10 23:56:46 +04:00
|
|
|
<< '{' << this->Join(headerExtensions, ',') << "}\" ";
|
|
|
|
if (mocSubDir.empty())
|
|
|
|
{
|
2011-11-30 00:07:50 +04:00
|
|
|
std::cerr << "in " << absPath << "\n" << std::endl;
|
2011-11-10 23:56:46 +04:00
|
|
|
}
|
2011-08-10 23:00:53 +04:00
|
|
|
else
|
|
|
|
{
|
2011-11-10 23:56:46 +04:00
|
|
|
std::cerr << "neither in " << absPath
|
2011-11-30 00:07:50 +04:00
|
|
|
<< " nor in " << mocSubDir << "\n" << std::endl;
|
2011-08-10 23:00:53 +04:00
|
|
|
}
|
2011-11-10 23:56:46 +04:00
|
|
|
|
|
|
|
::exit(EXIT_FAILURE);
|
2011-08-10 23:00:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-12-01 00:43:05 +04:00
|
|
|
std::string fileToMoc = absFilename;
|
2013-08-07 18:48:09 +04:00
|
|
|
if ((basename != scannedFileBasename) || (requiresMoc==false))
|
2011-11-10 23:25:28 +04:00
|
|
|
{
|
2011-12-03 00:43:15 +04:00
|
|
|
std::string mocSubDir = extractSubDir(absPath, currentMoc);
|
|
|
|
std::string headerToMoc = findMatchingHeader(
|
|
|
|
absPath, mocSubDir, basename, headerExtensions);
|
|
|
|
if (!headerToMoc.empty())
|
2011-11-23 01:01:13 +04:00
|
|
|
{
|
2011-12-03 00:43:15 +04:00
|
|
|
// this is for KDE4 compatibility:
|
|
|
|
fileToMoc = headerToMoc;
|
2013-08-07 18:48:09 +04:00
|
|
|
if ((requiresMoc==false) &&(basename==scannedFileBasename))
|
2011-12-03 00:54:11 +04:00
|
|
|
{
|
2013-10-11 15:28:48 +04:00
|
|
|
std::cerr << "AUTOGEN: warning: " << absFilename << ": The file "
|
2011-12-03 00:54:11 +04:00
|
|
|
"includes the moc file \"" << currentMoc <<
|
2013-08-07 18:48:09 +04:00
|
|
|
"\", but does not contain a " << macroName
|
|
|
|
<< " macro. Running moc on "
|
2011-12-14 22:12:15 +04:00
|
|
|
<< "\"" << headerToMoc << "\" ! Include \"moc_"
|
|
|
|
<< basename << ".cpp\" for a compatiblity with "
|
|
|
|
"strict mode (see CMAKE_AUTOMOC_RELAXED_MODE).\n"
|
2011-12-03 00:54:11 +04:00
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-10-11 15:28:48 +04:00
|
|
|
std::cerr << "AUTOGEN: warning: " << absFilename << ": The file "
|
2011-12-03 00:54:11 +04:00
|
|
|
"includes the moc file \"" << currentMoc <<
|
|
|
|
"\" instead of \"moc_" << basename << ".cpp\". "
|
|
|
|
"Running moc on "
|
2011-12-14 22:12:15 +04:00
|
|
|
<< "\"" << headerToMoc << "\" ! Include \"moc_"
|
|
|
|
<< basename << ".cpp\" for compatiblity with "
|
|
|
|
"strict mode (see CMAKE_AUTOMOC_RELAXED_MODE).\n"
|
2011-12-03 00:54:11 +04:00
|
|
|
<< std::endl;
|
|
|
|
}
|
2011-11-23 01:01:13 +04:00
|
|
|
}
|
2011-12-03 00:43:15 +04:00
|
|
|
else
|
2011-11-23 01:01:13 +04:00
|
|
|
{
|
2013-10-11 15:28:48 +04:00
|
|
|
std::cerr <<"AUTOGEN: error: " << absFilename << ": The file "
|
2011-11-23 01:01:13 +04:00
|
|
|
"includes the moc file \"" << currentMoc <<
|
|
|
|
"\", which seems to be the moc file from a different "
|
2011-12-03 00:54:11 +04:00
|
|
|
"source file. CMake also could not find a matching "
|
|
|
|
"header.\n" << std::endl;
|
2011-11-23 01:01:13 +04:00
|
|
|
::exit(EXIT_FAILURE);
|
|
|
|
}
|
2011-11-10 23:25:28 +04:00
|
|
|
}
|
2011-11-29 23:55:36 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
dotMocIncluded = true;
|
|
|
|
ownDotMocFile = currentMoc;
|
|
|
|
}
|
2011-12-01 00:43:05 +04:00
|
|
|
includedMocs[fileToMoc] = currentMoc;
|
2011-08-10 23:00:53 +04:00
|
|
|
}
|
|
|
|
matchOffset += mocIncludeRegExp.end();
|
|
|
|
} while(mocIncludeRegExp.find(contentsString.c_str() + matchOffset));
|
|
|
|
}
|
2011-10-22 21:38:39 +04:00
|
|
|
|
2011-11-11 00:30:06 +04:00
|
|
|
// In this case, check whether the scanned file itself contains a Q_OBJECT.
|
|
|
|
// If this is the case, the moc_foo.cpp should probably be generated from
|
|
|
|
// foo.cpp instead of foo.h, because otherwise it won't build.
|
|
|
|
// But warn, since this is not how it is supposed to be used.
|
2013-08-07 18:48:09 +04:00
|
|
|
if ((dotMocIncluded == false) && (requiresMoc == true))
|
2011-11-11 00:30:06 +04:00
|
|
|
{
|
2011-12-02 23:59:44 +04:00
|
|
|
if (mocUnderscoreIncluded == true)
|
2011-11-11 00:30:06 +04:00
|
|
|
{
|
2011-11-17 01:35:06 +04:00
|
|
|
// this is for KDE4 compatibility:
|
2013-10-11 15:28:48 +04:00
|
|
|
std::cerr << "AUTOGEN: warning: " << absFilename << ": The file "
|
2013-08-07 18:48:09 +04:00
|
|
|
<< "contains a " << macroName << " macro, but does not "
|
|
|
|
"include "
|
2011-11-17 01:35:06 +04:00
|
|
|
<< "\"" << scannedFileBasename << ".moc\", but instead "
|
|
|
|
"includes "
|
2011-11-11 00:30:06 +04:00
|
|
|
<< "\"" << ownMocUnderscoreFile << "\". Running moc on "
|
|
|
|
<< "\"" << absFilename << "\" ! Better include \""
|
2011-12-14 22:12:15 +04:00
|
|
|
<< scannedFileBasename << ".moc\" for compatiblity with "
|
|
|
|
"strict mode (see CMAKE_AUTOMOC_RELAXED_MODE).\n"
|
2011-11-11 00:30:06 +04:00
|
|
|
<< std::endl;
|
|
|
|
includedMocs[absFilename] = ownMocUnderscoreFile;
|
|
|
|
includedMocs.erase(ownMocHeaderFile);
|
|
|
|
}
|
2011-11-17 01:35:06 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// otherwise always error out since it will not compile:
|
2013-10-11 15:28:48 +04:00
|
|
|
std::cerr << "AUTOGEN: error: " << absFilename << ": The file "
|
2013-08-07 18:48:09 +04:00
|
|
|
<< "contains a " << macroName << " macro, but does not "
|
|
|
|
"include "
|
2011-11-30 00:07:50 +04:00
|
|
|
<< "\"" << scannedFileBasename << ".moc\" !\n"
|
2011-11-17 01:35:06 +04:00
|
|
|
<< std::endl;
|
|
|
|
::exit(EXIT_FAILURE);
|
|
|
|
}
|
2011-11-11 00:30:06 +04:00
|
|
|
}
|
|
|
|
|
2011-12-02 23:38:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
void cmQtAutoGenerators::StrictParseCppFile(const std::string& absFilename,
|
2014-09-17 03:23:57 +04:00
|
|
|
const std::vector<std::string>& headerExtensions,
|
|
|
|
std::map<std::string, std::string>& includedMocs,
|
|
|
|
std::map<std::string, std::vector<std::string> >& includedUis)
|
2011-12-02 23:59:44 +04:00
|
|
|
{
|
|
|
|
cmsys::RegularExpression mocIncludeRegExp(
|
|
|
|
"[\n][ \t]*#[ \t]*include[ \t]+"
|
|
|
|
"[\"<](([^ \">]+/)?moc_[^ \">/]+\\.cpp|[^ \">]+\\.moc)[\">]");
|
|
|
|
|
2014-01-24 17:00:34 +04:00
|
|
|
const std::string contentsString = ReadAll(absFilename);
|
2011-12-02 23:59:44 +04:00
|
|
|
if (contentsString.empty())
|
|
|
|
{
|
2013-10-11 15:28:48 +04:00
|
|
|
std::cerr << "AUTOGEN: warning: " << absFilename << ": file is empty\n"
|
2011-12-02 23:59:44 +04:00
|
|
|
<< std::endl;
|
|
|
|
return;
|
|
|
|
}
|
2014-01-24 20:01:59 +04:00
|
|
|
this->ParseForUic(absFilename, contentsString, includedUis);
|
|
|
|
if (this->MocExecutable.empty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-12-02 23:59:44 +04:00
|
|
|
const std::string absPath = cmsys::SystemTools::GetFilenamePath(
|
2014-10-15 16:54:05 +04:00
|
|
|
cmsys::SystemTools::GetRealPath(absFilename)) + '/';
|
2011-12-02 23:59:44 +04:00
|
|
|
const std::string scannedFileBasename = cmsys::SystemTools::
|
|
|
|
GetFilenameWithoutLastExtension(absFilename);
|
|
|
|
|
|
|
|
bool dotMocIncluded = false;
|
|
|
|
|
|
|
|
std::string::size_type matchOffset = 0;
|
2012-11-07 20:13:09 +04:00
|
|
|
// first a simple string check for "moc" is *much* faster than the regexp,
|
2011-12-02 23:59:44 +04:00
|
|
|
// and if the string search already fails, we don't have to try the
|
|
|
|
// expensive regexp
|
|
|
|
if ((strstr(contentsString.c_str(), "moc") != NULL)
|
|
|
|
&& (mocIncludeRegExp.find(contentsString)))
|
|
|
|
{
|
|
|
|
// for every moc include in the file
|
|
|
|
do
|
|
|
|
{
|
|
|
|
const std::string currentMoc = mocIncludeRegExp.match(1);
|
|
|
|
|
|
|
|
std::string basename = cmsys::SystemTools::
|
|
|
|
GetFilenameWithoutLastExtension(currentMoc);
|
2014-11-14 02:04:57 +03:00
|
|
|
const bool mocUnderscoreStyle = cmHasLiteralPrefix(basename, "moc_");
|
2011-12-02 23:59:44 +04:00
|
|
|
|
|
|
|
// If the moc include is of the moc_foo.cpp style we expect
|
|
|
|
// the Q_OBJECT class declaration in a header file.
|
|
|
|
// If the moc include is of the foo.moc style we need to look for
|
|
|
|
// a Q_OBJECT macro in the current source file, if it contains the
|
|
|
|
// macro we generate the moc file from the source file.
|
|
|
|
if (mocUnderscoreStyle)
|
|
|
|
{
|
|
|
|
// basename should be the part of the moc filename used for
|
|
|
|
// finding the correct header, so we need to remove the moc_ part
|
|
|
|
basename = basename.substr(4);
|
|
|
|
std::string mocSubDir = extractSubDir(absPath, currentMoc);
|
|
|
|
std::string headerToMoc = findMatchingHeader(
|
|
|
|
absPath, mocSubDir, basename, headerExtensions);
|
|
|
|
|
|
|
|
if (!headerToMoc.empty())
|
|
|
|
{
|
|
|
|
includedMocs[headerToMoc] = currentMoc;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-10-11 15:28:48 +04:00
|
|
|
std::cerr << "AUTOGEN: error: " << absFilename << " The file "
|
2011-12-02 23:59:44 +04:00
|
|
|
<< "includes the moc file \"" << currentMoc << "\", "
|
|
|
|
<< "but could not find header \"" << basename
|
|
|
|
<< '{' << this->Join(headerExtensions, ',') << "}\" ";
|
|
|
|
if (mocSubDir.empty())
|
|
|
|
{
|
|
|
|
std::cerr << "in " << absPath << "\n" << std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cerr << "neither in " << absPath
|
|
|
|
<< " nor in " << mocSubDir << "\n" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
::exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (basename != scannedFileBasename)
|
|
|
|
{
|
2013-10-11 15:28:48 +04:00
|
|
|
std::cerr <<"AUTOGEN: error: " << absFilename << ": The file "
|
2011-12-02 23:59:44 +04:00
|
|
|
"includes the moc file \"" << currentMoc <<
|
|
|
|
"\", which seems to be the moc file from a different "
|
|
|
|
"source file. This is not supported. "
|
|
|
|
"Include \"" << scannedFileBasename << ".moc\" to run "
|
|
|
|
"moc on this source file.\n" << std::endl;
|
|
|
|
::exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
dotMocIncluded = true;
|
|
|
|
includedMocs[absFilename] = currentMoc;
|
|
|
|
}
|
|
|
|
matchOffset += mocIncludeRegExp.end();
|
|
|
|
} while(mocIncludeRegExp.find(contentsString.c_str() + matchOffset));
|
|
|
|
}
|
|
|
|
|
|
|
|
// In this case, check whether the scanned file itself contains a Q_OBJECT.
|
|
|
|
// If this is the case, the moc_foo.cpp should probably be generated from
|
|
|
|
// foo.cpp instead of foo.h, because otherwise it won't build.
|
|
|
|
// But warn, since this is not how it is supposed to be used.
|
2013-08-07 18:48:09 +04:00
|
|
|
std::string macroName;
|
|
|
|
if ((dotMocIncluded == false) && (requiresMocing(contentsString,
|
|
|
|
macroName)))
|
2011-12-02 23:59:44 +04:00
|
|
|
{
|
|
|
|
// otherwise always error out since it will not compile:
|
2013-10-11 15:28:48 +04:00
|
|
|
std::cerr << "AUTOGEN: error: " << absFilename << ": The file "
|
2013-08-07 18:48:09 +04:00
|
|
|
<< "contains a " << macroName << " macro, but does not include "
|
2011-12-02 23:59:44 +04:00
|
|
|
<< "\"" << scannedFileBasename << ".moc\" !\n"
|
|
|
|
<< std::endl;
|
|
|
|
::exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-25 11:24:53 +04:00
|
|
|
void cmQtAutoGenerators::ParseForUic(const std::string& absFilename,
|
2014-09-17 03:23:57 +04:00
|
|
|
std::map<std::string, std::vector<std::string> >& includedUis)
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
|
|
|
if (this->UicExecutable.empty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2014-01-24 17:00:34 +04:00
|
|
|
const std::string contentsString = ReadAll(absFilename);
|
2013-07-25 11:24:53 +04:00
|
|
|
if (contentsString.empty())
|
|
|
|
{
|
|
|
|
std::cerr << "AUTOGEN: warning: " << absFilename << ": file is empty\n"
|
|
|
|
<< std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->ParseForUic(absFilename, contentsString, includedUis);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-02 16:19:27 +04:00
|
|
|
void cmQtAutoGenerators::ParseForUic(const std::string& absFilename,
|
2014-09-17 03:23:57 +04:00
|
|
|
const std::string& contentsString,
|
|
|
|
std::map<std::string, std::vector<std::string> >& includedUis)
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
|
|
|
if (this->UicExecutable.empty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cmsys::RegularExpression uiIncludeRegExp(
|
|
|
|
"[\n][ \t]*#[ \t]*include[ \t]+"
|
|
|
|
"[\"<](([^ \">]+/)?ui_[^ \">/]+\\.h)[\">]");
|
|
|
|
|
|
|
|
std::string::size_type matchOffset = 0;
|
|
|
|
|
2014-03-25 04:26:27 +04:00
|
|
|
const std::string realName =
|
2014-10-15 16:54:05 +04:00
|
|
|
cmsys::SystemTools::GetRealPath(absFilename);
|
2014-02-02 16:19:27 +04:00
|
|
|
|
2013-07-25 11:24:53 +04:00
|
|
|
matchOffset = 0;
|
|
|
|
if ((strstr(contentsString.c_str(), "ui_") != NULL)
|
|
|
|
&& (uiIncludeRegExp.find(contentsString)))
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
const std::string currentUi = uiIncludeRegExp.match(1);
|
|
|
|
|
|
|
|
std::string basename = cmsys::SystemTools::
|
|
|
|
GetFilenameWithoutLastExtension(currentUi);
|
|
|
|
|
|
|
|
// basename should be the part of the ui filename used for
|
|
|
|
// finding the correct header, so we need to remove the ui_ part
|
|
|
|
basename = basename.substr(3);
|
|
|
|
|
2014-09-17 03:23:57 +04:00
|
|
|
includedUis[realName].push_back(basename);
|
2013-07-25 11:24:53 +04:00
|
|
|
|
|
|
|
matchOffset += uiIncludeRegExp.end();
|
|
|
|
} while(uiIncludeRegExp.find(contentsString.c_str() + matchOffset));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
void
|
|
|
|
cmQtAutoGenerators::SearchHeadersForCppFile(const std::string& absFilename,
|
2013-02-10 20:49:42 +04:00
|
|
|
const std::vector<std::string>& headerExtensions,
|
|
|
|
std::set<std::string>& absHeaders)
|
2011-12-02 23:38:14 +04:00
|
|
|
{
|
2011-10-22 21:38:39 +04:00
|
|
|
// search for header files and private header files we may need to moc:
|
|
|
|
const std::string basename =
|
|
|
|
cmsys::SystemTools::GetFilenameWithoutLastExtension(absFilename);
|
2011-12-02 23:38:14 +04:00
|
|
|
const std::string absPath = cmsys::SystemTools::GetFilenamePath(
|
2014-10-15 16:54:05 +04:00
|
|
|
cmsys::SystemTools::GetRealPath(absFilename)) + '/';
|
2011-12-02 23:38:14 +04:00
|
|
|
|
2013-02-10 20:49:42 +04:00
|
|
|
for(std::vector<std::string>::const_iterator ext = headerExtensions.begin();
|
2011-10-22 21:38:39 +04:00
|
|
|
ext != headerExtensions.end();
|
|
|
|
++ext)
|
|
|
|
{
|
2013-02-10 20:58:29 +04:00
|
|
|
const std::string headerName = absPath + basename + "." + (*ext);
|
2011-10-22 21:38:39 +04:00
|
|
|
if (cmsys::SystemTools::FileExists(headerName.c_str()))
|
|
|
|
{
|
|
|
|
absHeaders.insert(headerName);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-02-10 20:49:42 +04:00
|
|
|
for(std::vector<std::string>::const_iterator ext = headerExtensions.begin();
|
2011-10-22 21:38:39 +04:00
|
|
|
ext != headerExtensions.end();
|
|
|
|
++ext)
|
|
|
|
{
|
2013-02-10 20:58:29 +04:00
|
|
|
const std::string privateHeaderName = absPath+basename+"_p."+(*ext);
|
2011-10-22 21:38:39 +04:00
|
|
|
if (cmsys::SystemTools::FileExists(privateHeaderName.c_str()))
|
|
|
|
{
|
|
|
|
absHeaders.insert(privateHeaderName);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
void cmQtAutoGenerators::ParseHeaders(const std::set<std::string>& absHeaders,
|
2014-09-17 03:23:57 +04:00
|
|
|
const std::map<std::string, std::string>& includedMocs,
|
|
|
|
std::map<std::string, std::string>& notIncludedMocs,
|
|
|
|
std::map<std::string, std::vector<std::string> >& includedUis)
|
2011-10-22 21:38:39 +04:00
|
|
|
{
|
|
|
|
for(std::set<std::string>::const_iterator hIt=absHeaders.begin();
|
|
|
|
hIt!=absHeaders.end();
|
|
|
|
++hIt)
|
|
|
|
{
|
|
|
|
const std::string& headerName = *hIt;
|
2014-01-24 17:00:34 +04:00
|
|
|
const std::string contents = ReadAll(headerName);
|
2011-10-22 21:38:39 +04:00
|
|
|
|
2014-01-24 20:01:59 +04:00
|
|
|
if (!this->MocExecutable.empty()
|
|
|
|
&& includedMocs.find(headerName) == includedMocs.end())
|
2011-10-22 21:38:39 +04:00
|
|
|
{
|
|
|
|
if (this->Verbose)
|
|
|
|
{
|
2013-10-11 15:28:48 +04:00
|
|
|
std::cout << "AUTOGEN: Checking " << headerName << std::endl;
|
2011-10-22 21:38:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
const std::string basename = cmsys::SystemTools::
|
|
|
|
GetFilenameWithoutLastExtension(headerName);
|
|
|
|
|
|
|
|
const std::string currentMoc = "moc_" + basename + ".cpp";
|
2013-08-07 18:48:09 +04:00
|
|
|
std::string macroName;
|
|
|
|
if (requiresMocing(contents, macroName))
|
2011-10-22 21:38:39 +04:00
|
|
|
{
|
|
|
|
//std::cout << "header contains Q_OBJECT macro";
|
|
|
|
notIncludedMocs[headerName] = currentMoc;
|
|
|
|
}
|
|
|
|
}
|
2013-07-25 11:24:53 +04:00
|
|
|
this->ParseForUic(headerName, contents, includedUis);
|
2011-10-22 21:38:39 +04:00
|
|
|
}
|
2011-08-10 23:00:53 +04:00
|
|
|
}
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
bool cmQtAutoGenerators::GenerateMoc(const std::string& sourceFile,
|
2011-08-08 17:20:13 +04:00
|
|
|
const std::string& mocFileName)
|
|
|
|
{
|
|
|
|
const std::string mocFilePath = this->Builddir + mocFileName;
|
|
|
|
int sourceNewerThanMoc = 0;
|
2014-10-15 16:54:05 +04:00
|
|
|
bool success = cmsys::SystemTools::FileTimeCompare(sourceFile,
|
|
|
|
mocFilePath,
|
2011-08-08 17:20:13 +04:00
|
|
|
&sourceNewerThanMoc);
|
|
|
|
if (this->GenerateAll || !success || sourceNewerThanMoc >= 0)
|
|
|
|
{
|
|
|
|
// make sure the directory for the resulting moc file exists
|
|
|
|
std::string mocDir = mocFilePath.substr(0, mocFilePath.rfind('/'));
|
|
|
|
if (!cmsys::SystemTools::FileExists(mocDir.c_str(), false))
|
|
|
|
{
|
|
|
|
cmsys::SystemTools::MakeDirectory(mocDir.c_str());
|
|
|
|
}
|
|
|
|
|
2011-08-14 18:43:04 +04:00
|
|
|
std::string msg = "Generating ";
|
|
|
|
msg += mocFileName;
|
|
|
|
cmSystemTools::MakefileColorEcho(cmsysTerminal_Color_ForegroundBlue
|
|
|
|
|cmsysTerminal_Color_ForegroundBold,
|
|
|
|
msg.c_str(), true, this->ColorOutput);
|
2011-08-08 17:20:13 +04:00
|
|
|
|
2014-02-10 09:21:34 +04:00
|
|
|
std::vector<std::string> command;
|
2011-08-08 17:20:13 +04:00
|
|
|
command.push_back(this->MocExecutable);
|
2014-11-22 13:00:45 +03:00
|
|
|
command.insert(command.end(),
|
|
|
|
this->MocIncludes.begin(), this->MocIncludes.end());
|
|
|
|
command.insert(command.end(),
|
|
|
|
this->MocDefinitions.begin(), this->MocDefinitions.end());
|
|
|
|
command.insert(command.end(),
|
|
|
|
this->MocOptions.begin(), this->MocOptions.end());
|
2011-08-08 17:20:13 +04:00
|
|
|
#ifdef _WIN32
|
|
|
|
command.push_back("-DWIN32");
|
|
|
|
#endif
|
|
|
|
command.push_back("-o");
|
|
|
|
command.push_back(mocFilePath);
|
|
|
|
command.push_back(sourceFile);
|
|
|
|
|
|
|
|
if (this->Verbose)
|
|
|
|
{
|
2014-02-10 09:21:34 +04:00
|
|
|
for(std::vector<std::string>::const_iterator cmdIt = command.begin();
|
2011-08-17 02:49:12 +04:00
|
|
|
cmdIt != command.end();
|
|
|
|
++cmdIt)
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
2011-08-17 02:49:12 +04:00
|
|
|
std::cout << *cmdIt << " ";
|
2011-08-08 17:20:13 +04:00
|
|
|
}
|
2011-08-14 19:17:01 +04:00
|
|
|
std::cout << std::endl;
|
2011-08-08 17:20:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string output;
|
|
|
|
int retVal = 0;
|
2015-04-20 22:36:57 +03:00
|
|
|
bool result = cmSystemTools::RunSingleCommand(command, &output, &output,
|
|
|
|
&retVal);
|
2011-08-08 17:20:13 +04:00
|
|
|
if (!result || retVal)
|
|
|
|
{
|
2013-10-11 15:28:48 +04:00
|
|
|
std::cerr << "AUTOGEN: error: process for " << mocFilePath <<" failed:\n"
|
2011-08-10 22:45:22 +04:00
|
|
|
<< output << std::endl;
|
2011-08-08 17:20:13 +04:00
|
|
|
this->RunMocFailed = true;
|
2014-10-15 16:54:05 +04:00
|
|
|
cmSystemTools::RemoveFile(mocFilePath);
|
2011-08-08 17:20:13 +04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-03-25 04:26:27 +04:00
|
|
|
bool cmQtAutoGenerators::GenerateUi(const std::string& realName,
|
2014-02-02 16:19:27 +04:00
|
|
|
const std::string& uiFileName)
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
|
|
|
if (!cmsys::SystemTools::FileExists(this->Builddir.c_str(), false))
|
|
|
|
{
|
|
|
|
cmsys::SystemTools::MakeDirectory(this->Builddir.c_str());
|
|
|
|
}
|
|
|
|
|
2014-03-25 04:26:27 +04:00
|
|
|
const std::string path = cmsys::SystemTools::GetFilenamePath(
|
2014-10-15 16:54:05 +04:00
|
|
|
realName) + '/';
|
2014-03-25 04:26:27 +04:00
|
|
|
|
2013-07-25 11:24:53 +04:00
|
|
|
std::string ui_output_file = "ui_" + uiFileName + ".h";
|
2014-02-02 16:19:27 +04:00
|
|
|
std::string ui_input_file = path + uiFileName + ".ui";
|
2013-07-25 11:24:53 +04:00
|
|
|
|
|
|
|
int sourceNewerThanUi = 0;
|
2014-10-15 16:54:05 +04:00
|
|
|
bool success = cmsys::SystemTools::FileTimeCompare(ui_input_file,
|
|
|
|
this->Builddir + ui_output_file,
|
2013-07-25 11:24:53 +04:00
|
|
|
&sourceNewerThanUi);
|
|
|
|
if (this->GenerateAll || !success || sourceNewerThanUi >= 0)
|
|
|
|
{
|
|
|
|
std::string msg = "Generating ";
|
|
|
|
msg += ui_output_file;
|
|
|
|
cmSystemTools::MakefileColorEcho(cmsysTerminal_Color_ForegroundBlue
|
|
|
|
|cmsysTerminal_Color_ForegroundBold,
|
|
|
|
msg.c_str(), true, this->ColorOutput);
|
|
|
|
|
2014-02-10 09:21:34 +04:00
|
|
|
std::vector<std::string> command;
|
2013-07-25 11:24:53 +04:00
|
|
|
command.push_back(this->UicExecutable);
|
|
|
|
|
|
|
|
std::vector<std::string> opts = this->UicTargetOptions;
|
|
|
|
std::map<std::string, std::string>::const_iterator optionIt
|
|
|
|
= this->UicOptions.find(ui_input_file);
|
|
|
|
if (optionIt != this->UicOptions.end())
|
|
|
|
{
|
|
|
|
std::vector<std::string> fileOpts;
|
|
|
|
cmSystemTools::ExpandListArgument(optionIt->second, fileOpts);
|
|
|
|
this->MergeUicOptions(opts, fileOpts, this->QtMajorVersion == "5");
|
|
|
|
}
|
2014-11-22 13:00:45 +03:00
|
|
|
command.insert(command.end(), opts.begin(), opts.end());
|
2013-07-25 11:24:53 +04:00
|
|
|
|
|
|
|
command.push_back("-o");
|
|
|
|
command.push_back(this->Builddir + ui_output_file);
|
|
|
|
command.push_back(ui_input_file);
|
|
|
|
|
|
|
|
if (this->Verbose)
|
|
|
|
{
|
2014-02-10 09:21:34 +04:00
|
|
|
for(std::vector<std::string>::const_iterator cmdIt = command.begin();
|
2013-07-25 11:24:53 +04:00
|
|
|
cmdIt != command.end();
|
|
|
|
++cmdIt)
|
|
|
|
{
|
|
|
|
std::cout << *cmdIt << " ";
|
|
|
|
}
|
|
|
|
std::cout << std::endl;
|
|
|
|
}
|
|
|
|
std::string output;
|
|
|
|
int retVal = 0;
|
2015-04-20 22:36:57 +03:00
|
|
|
bool result = cmSystemTools::RunSingleCommand(command, &output, &output,
|
|
|
|
&retVal);
|
2013-07-25 11:24:53 +04:00
|
|
|
if (!result || retVal)
|
|
|
|
{
|
|
|
|
std::cerr << "AUTOUIC: error: process for " << ui_output_file <<
|
2015-02-04 00:52:17 +03:00
|
|
|
" needed by\n \"" << realName << "\"\nfailed:\n" << output
|
|
|
|
<< std::endl;
|
2013-07-25 11:24:53 +04:00
|
|
|
this->RunUicFailed = true;
|
2014-10-15 16:54:05 +04:00
|
|
|
cmSystemTools::RemoveFile(ui_output_file);
|
2013-07-25 11:24:53 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2011-08-08 17:20:13 +04:00
|
|
|
|
2014-09-17 04:42:30 +04:00
|
|
|
bool cmQtAutoGenerators::InputFilesNewerThanQrc(const std::string& qrcFile,
|
|
|
|
const std::string& rccOutput)
|
|
|
|
{
|
|
|
|
std::vector<std::string> const& files = this->RccInputs[qrcFile];
|
|
|
|
for (std::vector<std::string>::const_iterator it = files.begin();
|
|
|
|
it != files.end(); ++it)
|
|
|
|
{
|
|
|
|
int inputNewerThanQrc = 0;
|
2014-11-23 13:05:50 +03:00
|
|
|
bool success = cmsys::SystemTools::FileTimeCompare(*it,
|
|
|
|
rccOutput,
|
2014-09-17 04:42:30 +04:00
|
|
|
&inputNewerThanQrc);
|
|
|
|
if (!success || inputNewerThanQrc >= 0)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-09-15 16:41:07 +04:00
|
|
|
bool cmQtAutoGenerators::GenerateQrc()
|
|
|
|
{
|
2014-09-23 02:57:48 +04:00
|
|
|
for(std::vector<std::string>::const_iterator si = this->RccSources.begin();
|
|
|
|
si != this->RccSources.end(); ++si)
|
2013-09-15 16:41:07 +04:00
|
|
|
{
|
|
|
|
std::string ext = cmsys::SystemTools::GetFilenameLastExtension(*si);
|
|
|
|
|
|
|
|
if (ext != ".qrc")
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2014-02-10 09:21:34 +04:00
|
|
|
std::vector<std::string> command;
|
2013-09-15 16:41:07 +04:00
|
|
|
command.push_back(this->RccExecutable);
|
|
|
|
|
|
|
|
std::string basename = cmsys::SystemTools::
|
|
|
|
GetFilenameWithoutLastExtension(*si);
|
|
|
|
|
2014-04-17 12:50:50 +04:00
|
|
|
std::string rcc_output_file = this->Builddir
|
|
|
|
+ "CMakeFiles/" + this->OriginTargetName
|
|
|
|
+ ".dir/qrc_" + basename + ".cpp";
|
2013-09-15 16:41:07 +04:00
|
|
|
|
|
|
|
int sourceNewerThanQrc = 0;
|
2014-09-17 04:42:30 +04:00
|
|
|
bool generateQrc = !cmsys::SystemTools::FileTimeCompare(*si,
|
2014-11-23 13:05:50 +03:00
|
|
|
rcc_output_file,
|
2013-09-15 16:41:07 +04:00
|
|
|
&sourceNewerThanQrc);
|
2014-09-17 04:42:30 +04:00
|
|
|
generateQrc = generateQrc || (sourceNewerThanQrc >= 0);
|
|
|
|
generateQrc = generateQrc || this->InputFilesNewerThanQrc(*si,
|
|
|
|
rcc_output_file);
|
|
|
|
|
|
|
|
if (this->GenerateAll || generateQrc)
|
2013-09-15 16:41:07 +04:00
|
|
|
{
|
|
|
|
std::map<std::string, std::string>::const_iterator optionIt
|
|
|
|
= this->RccOptions.find(*si);
|
|
|
|
if (optionIt != this->RccOptions.end())
|
|
|
|
{
|
2014-12-18 23:03:38 +03:00
|
|
|
cmSystemTools::ExpandListArgument(optionIt->second, command);
|
2013-09-15 16:41:07 +04:00
|
|
|
}
|
|
|
|
|
2014-03-25 04:16:49 +04:00
|
|
|
command.push_back("-name");
|
|
|
|
command.push_back(basename);
|
2013-09-15 16:41:07 +04:00
|
|
|
command.push_back("-o");
|
|
|
|
command.push_back(rcc_output_file);
|
|
|
|
command.push_back(*si);
|
|
|
|
|
|
|
|
if (this->Verbose)
|
|
|
|
{
|
2014-02-10 09:21:34 +04:00
|
|
|
for(std::vector<std::string>::const_iterator cmdIt = command.begin();
|
2013-09-15 16:41:07 +04:00
|
|
|
cmdIt != command.end();
|
|
|
|
++cmdIt)
|
|
|
|
{
|
|
|
|
std::cout << *cmdIt << " ";
|
|
|
|
}
|
|
|
|
std::cout << std::endl;
|
|
|
|
}
|
|
|
|
std::string output;
|
|
|
|
int retVal = 0;
|
2015-04-20 22:36:57 +03:00
|
|
|
bool result = cmSystemTools::RunSingleCommand(command, &output, &output,
|
|
|
|
&retVal);
|
2013-09-15 16:41:07 +04:00
|
|
|
if (!result || retVal)
|
|
|
|
{
|
|
|
|
std::cerr << "AUTORCC: error: process for " << rcc_output_file <<
|
|
|
|
" failed:\n" << output << std::endl;
|
|
|
|
this->RunRccFailed = true;
|
2014-10-15 16:54:05 +04:00
|
|
|
cmSystemTools::RemoveFile(rcc_output_file);
|
2013-09-15 16:41:07 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
std::string cmQtAutoGenerators::Join(const std::vector<std::string>& lst,
|
2013-02-10 20:49:42 +04:00
|
|
|
char separator)
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
|
|
|
if (lst.empty())
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string result;
|
2013-02-10 20:49:42 +04:00
|
|
|
for (std::vector<std::string>::const_iterator it = lst.begin();
|
2011-08-08 17:20:13 +04:00
|
|
|
it != lst.end();
|
|
|
|
++it)
|
|
|
|
{
|
2013-02-10 20:58:29 +04:00
|
|
|
result += "." + (*it) + separator;
|
2011-08-08 17:20:13 +04:00
|
|
|
}
|
|
|
|
result.erase(result.end() - 1);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
bool cmQtAutoGenerators::StartsWith(const std::string& str,
|
|
|
|
const std::string& with)
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
|
|
|
return (str.substr(0, with.length()) == with);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-24 22:07:45 +04:00
|
|
|
bool cmQtAutoGenerators::EndsWith(const std::string& str,
|
|
|
|
const std::string& with)
|
2011-08-08 17:20:13 +04:00
|
|
|
{
|
|
|
|
if (with.length() > (str.length()))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return (str.substr(str.length() - with.length(), with.length()) == with);
|
|
|
|
}
|