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"
|
|
|
|
|
2013-03-29 23:56:13 +04:00
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
|
|
|
# include "cmLocalVisualStudioGenerator.h"
|
|
|
|
#endif
|
|
|
|
|
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();
|
|
|
|
std::string targetDir = makefile->GetCurrentOutputDirectory();
|
|
|
|
targetDir += makefile->GetCMakeInstance()->GetCMakeFilesDirectory();
|
|
|
|
targetDir += "/";
|
|
|
|
targetDir += getAutogenTargetName(target);
|
|
|
|
targetDir += ".dir/";
|
|
|
|
return targetDir;
|
|
|
|
}
|
|
|
|
|
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);
|
2013-10-11 15:30:54 +04:00
|
|
|
std::string mocCppFile = makefile->GetCurrentOutputDirectory();
|
|
|
|
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;
|
2011-11-04 01:55:42 +04:00
|
|
|
currentLine.push_back(makefile->GetSafeDefinition("CMAKE_COMMAND"));
|
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(
|
|
|
|
"", makefile->GetCurrentOutputDirectory());
|
|
|
|
|
|
|
|
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;
|
2013-06-11 17:52:48 +04:00
|
|
|
cmLocalGenerator* localGen = makefile->GetLocalGenerator();
|
2013-03-29 23:56:13 +04:00
|
|
|
cmGlobalGenerator* gg = localGen->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
|
|
|
{
|
|
|
|
cmLocalVisualStudioGenerator* vslg =
|
|
|
|
static_cast<cmLocalVisualStudioGenerator*>(localGen);
|
|
|
|
// 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
|
|
|
|
usePRE_BUILD = vslg->GetVersion() >= cmLocalVisualStudioGenerator::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
|
|
|
}
|
|
|
|
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;
|
|
|
|
cmCustomCommand cc(makefile, no_output, 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
|
|
|
|
{
|
2013-10-11 16:26:51 +04:00
|
|
|
cmTarget* autogenTarget = makefile->AddUtilityCommand(
|
2014-03-11 03:04:11 +04:00
|
|
|
autogenTargetName, true,
|
2013-03-29 23:56:13 +04:00
|
|
|
workingDirectory.c_str(), depends,
|
2013-10-11 16:26:51 +04:00
|
|
|
commandLines, false, autogenComment.c_str());
|
2013-06-28 23:40:16 +04:00
|
|
|
// Set target folder
|
2013-10-11 16:26:53 +04:00
|
|
|
const char* autogenFolder = makefile->GetCMakeInstance()->GetProperty(
|
2013-06-28 23:40:16 +04:00
|
|
|
"AUTOMOC_TARGETS_FOLDER");
|
2013-10-11 16:26:53 +04:00
|
|
|
if (!autogenFolder)
|
2013-06-28 23:40:16 +04:00
|
|
|
{
|
2013-10-11 16:26:53 +04:00
|
|
|
autogenFolder = makefile->GetCMakeInstance()->GetProperty(
|
|
|
|
"AUTOGEN_TARGETS_FOLDER");
|
|
|
|
}
|
|
|
|
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();
|
|
|
|
cmLocalGenerator* localGen = makefile->GetLocalGenerator();
|
|
|
|
std::vector<std::string> includeDirs;
|
2013-12-10 18:45:27 +04:00
|
|
|
cmGeneratorTarget *gtgt = target->GetMakefile()->GetLocalGenerator()
|
|
|
|
->GetGlobalGenerator()
|
|
|
|
->GetGeneratorTarget(target);
|
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);
|
2013-11-04 13:29:21 +04:00
|
|
|
const char* sep = "";
|
|
|
|
incs = "";
|
|
|
|
for(std::vector<std::string>::const_iterator incDirIt = includeDirs.begin();
|
|
|
|
incDirIt != includeDirs.end();
|
|
|
|
++incDirIt)
|
|
|
|
{
|
|
|
|
incs += sep;
|
|
|
|
sep = ";";
|
|
|
|
incs += *incDirIt;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::set<std::string> defines;
|
|
|
|
localGen->AddCompileDefinitions(defines, target, config);
|
|
|
|
|
|
|
|
sep = "";
|
|
|
|
for(std::set<std::string>::const_iterator defIt = defines.begin();
|
|
|
|
defIt != defines.end();
|
|
|
|
++defIt)
|
|
|
|
{
|
|
|
|
defs += sep;
|
|
|
|
sep = ";";
|
|
|
|
defs += *defIt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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",
|
2014-03-11 03:04:11 +04:00
|
|
|
cmLocalGenerator::EscapeForCMake(autogenTargetName).c_str());
|
2014-04-17 12:50:50 +04:00
|
|
|
makefile->AddDefinition("_origin_target_name",
|
|
|
|
cmLocalGenerator::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")
|
|
|
|
|| target->GetPropertyAsBool("AUTOUIC"))
|
|
|
|
{
|
|
|
|
this->SetupSourceFiles(target);
|
|
|
|
}
|
|
|
|
makefile->AddDefinition("_cpp_files",
|
2014-03-11 03:04:11 +04:00
|
|
|
cmLocalGenerator::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";
|
|
|
|
makefile->ConfigureFile(inputFile.c_str(), outputFile.c_str(),
|
|
|
|
false, true, false);
|
|
|
|
|
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(
|
|
|
|
sf->GetFullPath().c_str());
|
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",
|
2014-03-11 03:04:11 +04:00
|
|
|
cmLocalGenerator::EscapeForCMake(_moc_options).c_str());
|
2013-10-11 17:04:15 +04:00
|
|
|
makefile->AddDefinition("_skip_moc",
|
2014-03-11 03:04:11 +04:00
|
|
|
cmLocalGenerator::EscapeForCMake(this->SkipMoc).c_str());
|
2012-03-21 01:52:05 +04:00
|
|
|
makefile->AddDefinition("_moc_headers",
|
2014-03-11 03:04:11 +04:00
|
|
|
cmLocalGenerator::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",
|
2014-03-11 03:04:11 +04:00
|
|
|
cmLocalGenerator::EscapeForCMake(_moc_incs).c_str());
|
2013-06-11 17:52:48 +04:00
|
|
|
makefile->AddDefinition("_moc_compile_defs",
|
2014-03-11 03:04:11 +04:00
|
|
|
cmLocalGenerator::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] =
|
2014-03-11 03:04:11 +04:00
|
|
|
cmLocalGenerator::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] =
|
2014-03-11 03:04:11 +04:00
|
|
|
cmLocalGenerator::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);
|
|
|
|
|
|
|
|
const char* sep = "";
|
|
|
|
for(std::vector<std::string>::const_iterator optIt = opts.begin();
|
|
|
|
optIt != opts.end();
|
|
|
|
++optIt)
|
|
|
|
{
|
|
|
|
optString += sep;
|
|
|
|
sep = ";";
|
|
|
|
optString += *optIt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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);
|
2013-07-25 11:24:53 +04:00
|
|
|
|
2014-01-24 19:32:34 +04:00
|
|
|
for (std::vector<std::string>::const_iterator li = skipVec.begin();
|
|
|
|
li != skipVec.end(); ++li)
|
2013-07-25 11:24:53 +04:00
|
|
|
{
|
2014-01-24 19:32:34 +04:00
|
|
|
skipped.insert(*li);
|
2013-07-25 11:24:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
makefile->AddDefinition("_skip_uic",
|
2014-03-11 03:04:11 +04:00
|
|
|
cmLocalGenerator::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())
|
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
_uic_opts = cmLocalGenerator::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] =
|
2014-03-11 03:04:11 +04:00
|
|
|
cmLocalGenerator::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(
|
|
|
|
sf->GetFullPath().c_str());
|
|
|
|
|
|
|
|
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",
|
2014-03-11 03:04:11 +04:00
|
|
|
cmLocalGenerator::EscapeForCMake(uiFileFiles).c_str());
|
2013-07-25 11:24:53 +04:00
|
|
|
makefile->AddDefinition("_qt_uic_options_options",
|
2014-03-11 03:04:11 +04:00
|
|
|
cmLocalGenerator::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
|
|
|
|
|
|
|
std::string rccFileFiles;
|
|
|
|
std::string rccFileOptions;
|
|
|
|
const char *sep = "";
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
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(
|
|
|
|
sf->GetFullPath().c_str());
|
|
|
|
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())
|
|
|
|
{
|
|
|
|
rccFileFiles += sep;
|
|
|
|
rccFileFiles += absFile;
|
|
|
|
rccFileOptions += sep;
|
|
|
|
}
|
|
|
|
const char *listSep = "";
|
|
|
|
for(std::vector<std::string>::const_iterator it = rccOptions.begin();
|
|
|
|
it != rccOptions.end();
|
|
|
|
++it)
|
|
|
|
{
|
|
|
|
rccFileOptions += listSep;
|
|
|
|
rccFileOptions += *it;
|
|
|
|
listSep = "@list_sep@";
|
|
|
|
}
|
|
|
|
sep = ";";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
makefile->AddDefinition("_rcc_files",
|
2014-03-11 03:04:11 +04:00
|
|
|
cmLocalGenerator::EscapeForCMake(_rcc_files).c_str());
|
2013-09-15 16:41:07 +04:00
|
|
|
|
|
|
|
makefile->AddDefinition("_qt_rcc_options_files",
|
2014-03-11 03:04:11 +04:00
|
|
|
cmLocalGenerator::EscapeForCMake(rccFileFiles).c_str());
|
2013-09-15 16:41:07 +04:00
|
|
|
makefile->AddDefinition("_qt_rcc_options_options",
|
2014-03-11 03:04:11 +04:00
|
|
|
cmLocalGenerator::EscapeForCMake(rccFileOptions).c_str());
|
2013-09-15 16:41:07 +04:00
|
|
|
|
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());
|
2013-09-15 16:41:07 +04:00
|
|
|
return;
|
|
|
|
}
|
2014-03-08 16:55:46 +04:00
|
|
|
makefile->AddDefinition("_qt_rcc_executable", 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-01-24 16:02:16 +04:00
|
|
|
return;
|
2013-09-15 16:41:07 +04:00
|
|
|
}
|
2014-03-08 16:55:46 +04:00
|
|
|
makefile->AddDefinition("_qt_rcc_executable", qt4Rcc->GetLocation(""));
|
2014-01-24 16:02:16 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("The CMAKE_AUTORCC feature supports only Qt 4 and "
|
2014-02-07 02:31:47 +04:00
|
|
|
"Qt 5 ", targetName.c_str());
|
2013-09-15 16:41:07 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-24 17:00:34 +04:00
|
|
|
static cmGlobalGenerator* CreateGlobalGenerator(cmake* cm,
|
2014-02-25 02:38:30 +04:00
|
|
|
const std::string& targetDirectory)
|
2014-01-24 17:00:34 +04:00
|
|
|
{
|
|
|
|
cmGlobalGenerator* gg = new cmGlobalGenerator();
|
|
|
|
gg->SetCMakeInstance(cm);
|
|
|
|
|
|
|
|
cmLocalGenerator* lg = gg->CreateLocalGenerator();
|
|
|
|
lg->GetMakefile()->SetHomeOutputDirectory(targetDirectory);
|
|
|
|
lg->GetMakefile()->SetStartOutputDirectory(targetDirectory);
|
|
|
|
lg->GetMakefile()->SetHomeDirectory(targetDirectory);
|
|
|
|
lg->GetMakefile()->SetStartDirectory(targetDirectory);
|
|
|
|
gg->SetCurrentLocalGenerator(lg);
|
|
|
|
|
|
|
|
return gg;
|
|
|
|
}
|
|
|
|
|
2014-02-25 02:38:30 +04:00
|
|
|
bool cmQtAutoGenerators::Run(const std::string& targetDirectory,
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config)
|
2011-08-07 19:16:00 +04:00
|
|
|
{
|
2012-06-15 00:27:22 +04:00
|
|
|
bool success = true;
|
2011-08-07 19:16:00 +04:00
|
|
|
cmake cm;
|
2014-01-24 17:00:34 +04:00
|
|
|
cmGlobalGenerator* gg = CreateGlobalGenerator(&cm, targetDirectory);
|
2011-08-07 19:16:00 +04:00
|
|
|
cmMakefile* makefile = gg->GetCurrentLocalGenerator()->GetMakefile();
|
|
|
|
|
2013-10-02 15:50:31 +04:00
|
|
|
this->ReadAutogenInfoFile(makefile, targetDirectory, config);
|
2011-08-07 19:16:00 +04:00
|
|
|
this->ReadOldMocDefinitionsFile(makefile, targetDirectory);
|
|
|
|
|
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
|
|
|
{
|
2013-10-11 15:28:08 +04:00
|
|
|
success = this->RunAutogen(makefile);
|
2011-08-07 19:16:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
this->WriteOldMocDefinitionsFile(targetDirectory);
|
2011-08-08 17:20:13 +04:00
|
|
|
|
|
|
|
delete gg;
|
|
|
|
gg = NULL;
|
|
|
|
makefile = NULL;
|
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(
|
|
|
|
cmSystemTools::CollapseFullPath(targetDirectory.c_str()));
|
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
|
|
|
|
|
|
|
if (!makefile->ReadListFile(0, filename.c_str()))
|
|
|
|
{
|
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");
|
2013-09-15 16:41:07 +04:00
|
|
|
this->RccSources = makefile->GetSafeDefinition("AM_RCC_SOURCES");
|
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;
|
|
|
|
}
|
|
|
|
}
|
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(
|
|
|
|
cmSystemTools::CollapseFullPath(targetDirectory.c_str()));
|
2011-08-07 19:16:00 +04:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(filename);
|
|
|
|
filename += "/AutomocOldMocDefinitions.cmake";
|
|
|
|
|
2011-08-08 17:20:13 +04:00
|
|
|
if (makefile->ReadListFile(0, 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(
|
|
|
|
cmSystemTools::CollapseFullPath(targetDirectory.c_str()));
|
2011-08-08 17:20:13 +04:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(filename);
|
|
|
|
filename += "/AutomocOldMocDefinitions.cmake";
|
|
|
|
|
|
|
|
std::fstream outfile;
|
|
|
|
outfile.open(filename.c_str(),
|
2011-08-18 20:53:14 +04:00
|
|
|
std::ios::out | std::ios::trunc);
|
2012-08-27 23:39:50 +04:00
|
|
|
outfile << "set(AM_OLD_COMPILE_SETTINGS "
|
2012-03-21 01:52:05 +04:00
|
|
|
<< cmLocalGenerator::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);
|
|
|
|
if (this->EndsWith(path, ".framework/Headers"))
|
|
|
|
{
|
|
|
|
// Go up twice to get to the framework root
|
|
|
|
std::vector<std::string> pathComponents;
|
|
|
|
cmsys::SystemTools::SplitPath(path.c_str(), pathComponents);
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
const std::string &binDir = "-I" + this->ProjectBinaryDir;
|
|
|
|
|
|
|
|
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-02-02 16:19:27 +04:00
|
|
|
std::map<std::string, std::string> includedUis;
|
|
|
|
std::map<std::string, 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-02-02 16:19:27 +04:00
|
|
|
std::map<std::string, std::string>& uiFiles
|
|
|
|
= 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);
|
|
|
|
for (std::vector<std::string>::const_iterator it = headerFilesVec.begin();
|
|
|
|
it != headerFilesVec.end();
|
2011-08-09 11:11:53 +04:00
|
|
|
++it)
|
|
|
|
{
|
2011-10-22 21:38:39 +04:00
|
|
|
headerFiles.insert(*it);
|
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-02-02 16:19:27 +04:00
|
|
|
for(std::map<std::string, std::string>::const_iterator
|
|
|
|
it = includedUis.begin();
|
2013-07-25 11:24:53 +04:00
|
|
|
it != includedUis.end();
|
|
|
|
++it)
|
|
|
|
{
|
2014-02-02 16:19:27 +04:00
|
|
|
this->GenerateUi(it->first, it->second);
|
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)
|
|
|
|
std::fstream outfile;
|
|
|
|
outfile.open(this->OutMocCppFilename.c_str(),
|
2011-08-18 20:53:14 +04:00
|
|
|
std::ios::out | 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,
|
2013-02-10 20:49:42 +04:00
|
|
|
const std::vector<std::string>& headerExtensions,
|
2013-07-25 11:24:53 +04:00
|
|
|
std::map<std::string, std::string>& includedMocs,
|
2014-02-02 16:19:27 +04:00
|
|
|
std::map<std::string, 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(
|
|
|
|
cmsys::SystemTools::GetRealPath(absFilename.c_str())) + '/';
|
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);
|
|
|
|
const bool moc_style = this->StartsWith(basename, "moc_");
|
|
|
|
|
|
|
|
// 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,
|
2013-02-10 20:49:42 +04:00
|
|
|
const std::vector<std::string>& headerExtensions,
|
2013-07-25 11:24:53 +04:00
|
|
|
std::map<std::string, std::string>& includedMocs,
|
2014-02-02 16:19:27 +04:00
|
|
|
std::map<std::string, 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(
|
|
|
|
cmsys::SystemTools::GetRealPath(absFilename.c_str())) + '/';
|
|
|
|
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);
|
|
|
|
const bool mocUnderscoreStyle = this->StartsWith(basename, "moc_");
|
|
|
|
|
|
|
|
// 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-02-02 16:19:27 +04:00
|
|
|
std::map<std::string, 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,
|
2013-07-25 11:24:53 +04:00
|
|
|
const std::string& contentsString,
|
2014-02-02 16:19:27 +04:00
|
|
|
std::map<std::string, 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 =
|
|
|
|
cmsys::SystemTools::GetRealPath(absFilename.c_str());
|
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-03-25 04:26:27 +04:00
|
|
|
includedUis[realName] = 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(
|
|
|
|
cmsys::SystemTools::GetRealPath(absFilename.c_str())) + '/';
|
|
|
|
|
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,
|
2011-10-22 21:38:39 +04:00
|
|
|
const std::map<std::string, std::string>& includedMocs,
|
2013-07-25 11:24:53 +04:00
|
|
|
std::map<std::string, std::string>& notIncludedMocs,
|
2014-02-02 16:19:27 +04:00
|
|
|
std::map<std::string, 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;
|
|
|
|
bool success = cmsys::SystemTools::FileTimeCompare(sourceFile.c_str(),
|
|
|
|
mocFilePath.c_str(),
|
|
|
|
&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);
|
|
|
|
for (std::list<std::string>::const_iterator it = this->MocIncludes.begin();
|
|
|
|
it != this->MocIncludes.end();
|
|
|
|
++it)
|
|
|
|
{
|
|
|
|
command.push_back(*it);
|
|
|
|
}
|
|
|
|
for(std::list<std::string>::const_iterator it=this->MocDefinitions.begin();
|
|
|
|
it != this->MocDefinitions.end();
|
|
|
|
++it)
|
|
|
|
{
|
|
|
|
command.push_back(*it);
|
|
|
|
}
|
2011-11-01 17:33:11 +04:00
|
|
|
for(std::vector<std::string>::const_iterator it=this->MocOptions.begin();
|
|
|
|
it != this->MocOptions.end();
|
|
|
|
++it)
|
|
|
|
{
|
|
|
|
command.push_back(*it);
|
|
|
|
}
|
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;
|
2011-08-10 22:45:22 +04:00
|
|
|
bool result = cmSystemTools::RunSingleCommand(command, &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;
|
|
|
|
cmSystemTools::RemoveFile(mocFilePath.c_str());
|
|
|
|
}
|
|
|
|
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(
|
|
|
|
realName.c_str()) + '/';
|
|
|
|
|
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;
|
|
|
|
bool success = cmsys::SystemTools::FileTimeCompare(ui_input_file.c_str(),
|
|
|
|
(this->Builddir + ui_output_file).c_str(),
|
|
|
|
&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");
|
|
|
|
}
|
|
|
|
for(std::vector<std::string>::const_iterator optIt = opts.begin();
|
|
|
|
optIt != opts.end();
|
|
|
|
++optIt)
|
|
|
|
{
|
|
|
|
command.push_back(*optIt);
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
bool result = cmSystemTools::RunSingleCommand(command, &output, &retVal);
|
|
|
|
if (!result || retVal)
|
|
|
|
{
|
|
|
|
std::cerr << "AUTOUIC: error: process for " << ui_output_file <<
|
|
|
|
" failed:\n" << output << std::endl;
|
|
|
|
this->RunUicFailed = true;
|
|
|
|
cmSystemTools::RemoveFile(ui_output_file.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2011-08-08 17:20:13 +04:00
|
|
|
|
2013-09-15 16:41:07 +04:00
|
|
|
bool cmQtAutoGenerators::GenerateQrc()
|
|
|
|
{
|
|
|
|
std::vector<std::string> sourceFiles;
|
|
|
|
cmSystemTools::ExpandListArgument(this->RccSources, sourceFiles);
|
|
|
|
|
|
|
|
for(std::vector<std::string>::const_iterator si = sourceFiles.begin();
|
|
|
|
si != sourceFiles.end(); ++si)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
bool success = cmsys::SystemTools::FileTimeCompare(si->c_str(),
|
|
|
|
rcc_output_file.c_str(),
|
|
|
|
&sourceNewerThanQrc);
|
|
|
|
if (this->GenerateAll || !success || sourceNewerThanQrc >= 0)
|
|
|
|
{
|
|
|
|
std::map<std::string, std::string>::const_iterator optionIt
|
|
|
|
= this->RccOptions.find(*si);
|
|
|
|
if (optionIt != this->RccOptions.end())
|
|
|
|
{
|
|
|
|
std::vector<std::string> opts;
|
|
|
|
cmSystemTools::ExpandListArgument(optionIt->second, opts);
|
|
|
|
for(std::vector<std::string>::const_iterator optIt = opts.begin();
|
|
|
|
optIt != opts.end();
|
|
|
|
++optIt)
|
|
|
|
{
|
|
|
|
command.push_back(*optIt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
bool result = cmSystemTools::RunSingleCommand(command, &output, &retVal);
|
|
|
|
if (!result || retVal)
|
|
|
|
{
|
|
|
|
std::cerr << "AUTORCC: error: process for " << rcc_output_file <<
|
|
|
|
" failed:\n" << output << std::endl;
|
|
|
|
this->RunRccFailed = true;
|
|
|
|
cmSystemTools::RemoveFile(rcc_output_file.c_str());
|
|
|
|
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);
|
|
|
|
}
|