2011-10-22 19:43:34 +02: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.
|
|
|
|
============================================================================*/
|
|
|
|
|
2013-09-24 20:07:45 +02:00
|
|
|
#ifndef cmQtAutoGenerators_h
|
|
|
|
#define cmQtAutoGenerators_h
|
2011-08-07 12:02:46 +02:00
|
|
|
|
2016-04-29 09:40:20 -04:00
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
|
2015-01-12 21:17:55 +01:00
|
|
|
#include <list>
|
2015-09-26 12:51:46 +02:00
|
|
|
#include <map>
|
2016-04-29 10:53:13 -04:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2015-01-12 21:17:55 +01:00
|
|
|
|
2011-08-07 17:16:00 +02:00
|
|
|
class cmMakefile;
|
2015-09-26 18:54:56 +02:00
|
|
|
|
|
|
|
class cmQtAutoGenerators
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmQtAutoGenerators();
|
|
|
|
bool Run(const std::string& targetDirectory, const std::string& config);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2013-10-02 13:50:31 +02:00
|
|
|
bool ReadAutogenInfoFile(cmMakefile* makefile,
|
2014-02-24 17:38:30 -05:00
|
|
|
const std::string& targetDirectory,
|
2014-02-09 22:48:34 -05:00
|
|
|
const std::string& config);
|
2011-08-07 17:16:00 +02:00
|
|
|
bool ReadOldMocDefinitionsFile(cmMakefile* makefile,
|
2014-02-24 17:38:30 -05:00
|
|
|
const std::string& targetDirectory);
|
|
|
|
void WriteOldMocDefinitionsFile(const std::string& targetDirectory);
|
2011-08-07 17:16:00 +02:00
|
|
|
|
2012-08-27 21:39:50 +02:00
|
|
|
std::string MakeCompileSettingsString(cmMakefile* makefile);
|
|
|
|
|
2013-10-11 13:28:08 +02:00
|
|
|
bool RunAutogen(cmMakefile* makefile);
|
2016-04-18 13:46:28 +02:00
|
|
|
bool GenerateMocFiles(
|
|
|
|
const std::map<std::string, std::string>& includedMocs,
|
|
|
|
const std::map<std::string, std::string>& notIncludedMocs);
|
2011-08-08 15:20:13 +02:00
|
|
|
bool GenerateMoc(const std::string& sourceFile,
|
|
|
|
const std::string& mocFileName);
|
2016-04-18 14:07:12 +02:00
|
|
|
bool GenerateUiFiles(
|
|
|
|
const std::map<std::string, std::vector<std::string> >& includedUis );
|
2016-04-18 16:51:24 +02:00
|
|
|
bool GenerateUi(const std::string& realName,
|
|
|
|
const std::string& uiInputFile,
|
|
|
|
const std::string& uiOutputFile );
|
2016-04-18 12:34:10 +02:00
|
|
|
bool GenerateQrcFiles();
|
2016-04-18 17:52:00 +02:00
|
|
|
bool GenerateQrc(const std::string& qrcInputFile,
|
|
|
|
const std::string& qrcOutputFile);
|
2011-08-10 21:00:53 +02:00
|
|
|
void ParseCppFile(const std::string& absFilename,
|
2014-09-17 01:23:57 +02:00
|
|
|
const std::vector<std::string>& headerExtensions,
|
|
|
|
std::map<std::string, std::string>& includedMocs,
|
|
|
|
std::map<std::string, std::vector<std::string> >& includedUis);
|
2011-12-02 20:59:44 +01:00
|
|
|
void StrictParseCppFile(const std::string& absFilename,
|
2014-09-17 01:23:57 +02:00
|
|
|
const std::vector<std::string>& headerExtensions,
|
|
|
|
std::map<std::string, std::string>& includedMocs,
|
|
|
|
std::map<std::string, std::vector<std::string> >& includedUis);
|
2011-12-02 20:38:14 +01:00
|
|
|
void SearchHeadersForCppFile(const std::string& absFilename,
|
2013-02-10 17:49:42 +01:00
|
|
|
const std::vector<std::string>& headerExtensions,
|
|
|
|
std::set<std::string>& absHeaders);
|
2011-12-02 20:38:14 +01:00
|
|
|
|
2011-10-22 19:38:39 +02:00
|
|
|
void ParseHeaders(const std::set<std::string>& absHeaders,
|
2014-09-17 01:23:57 +02:00
|
|
|
const std::map<std::string, std::string>& includedMocs,
|
|
|
|
std::map<std::string, std::string>& notIncludedMocs,
|
|
|
|
std::map<std::string, std::vector<std::string> >& includedUis);
|
2013-07-25 09:24:53 +02:00
|
|
|
|
|
|
|
void ParseForUic(const std::string& fileName,
|
2014-09-17 01:23:57 +02:00
|
|
|
const std::string& contentsString,
|
|
|
|
std::map<std::string, std::vector<std::string> >& includedUis);
|
2013-07-25 09:24:53 +02:00
|
|
|
|
|
|
|
void ParseForUic(const std::string& fileName,
|
2014-09-17 01:23:57 +02:00
|
|
|
std::map<std::string, std::vector<std::string> >& includedUis);
|
2011-08-10 21:00:53 +02:00
|
|
|
|
2011-08-08 15:20:13 +02:00
|
|
|
void Init();
|
|
|
|
|
2016-04-19 10:15:31 +02:00
|
|
|
std::string SourceRelativePath(const std::string& filename);
|
|
|
|
|
2016-04-18 20:09:23 +02:00
|
|
|
bool NameCollisionTest(const std::map<std::string, std::string >& genFiles,
|
|
|
|
std::multimap<std::string, std::string>& collisions );
|
|
|
|
void NameCollisionLog(
|
2016-04-24 15:00:26 +02:00
|
|
|
const std::string& message,
|
|
|
|
const std::multimap<std::string, std::string>& collisions );
|
2016-04-18 20:09:23 +02:00
|
|
|
|
2016-04-24 15:00:26 +02:00
|
|
|
void LogInfo(const std::string& message);
|
|
|
|
void LogError(const std::string& message);
|
2016-04-18 12:02:28 +02:00
|
|
|
void LogCommand(const std::vector<std::string>& command);
|
2016-04-18 11:39:06 +02:00
|
|
|
std::string JoinExts(const std::vector<std::string>& lst);
|
2011-08-07 17:16:00 +02:00
|
|
|
|
2015-09-20 16:40:49 +02:00
|
|
|
static void MergeUicOptions(std::vector<std::string> &opts,
|
2013-07-25 09:24:53 +02:00
|
|
|
const std::vector<std::string> &fileOpts, bool isQt5);
|
|
|
|
|
2014-09-17 02:42:30 +02:00
|
|
|
bool InputFilesNewerThanQrc(const std::string& qrcFile,
|
|
|
|
const std::string& rccOutput);
|
|
|
|
|
2011-08-07 17:16:00 +02:00
|
|
|
std::string QtMajorVersion;
|
2011-08-08 15:20:13 +02:00
|
|
|
std::string Sources;
|
2014-09-23 00:57:48 +02:00
|
|
|
std::vector<std::string> RccSources;
|
2013-07-25 09:24:53 +02:00
|
|
|
std::string SkipMoc;
|
|
|
|
std::string SkipUic;
|
2011-08-09 09:11:53 +02:00
|
|
|
std::string Headers;
|
2011-08-08 15:20:13 +02:00
|
|
|
std::string Srcdir;
|
|
|
|
std::string Builddir;
|
|
|
|
std::string MocExecutable;
|
2013-07-25 09:24:53 +02:00
|
|
|
std::string UicExecutable;
|
2013-09-15 14:41:07 +02:00
|
|
|
std::string RccExecutable;
|
2011-08-08 15:20:13 +02:00
|
|
|
std::string MocCompileDefinitionsStr;
|
|
|
|
std::string MocIncludesStr;
|
2011-11-01 14:33:11 +01:00
|
|
|
std::string MocOptionsStr;
|
2011-08-08 15:20:13 +02:00
|
|
|
std::string ProjectBinaryDir;
|
|
|
|
std::string ProjectSourceDir;
|
|
|
|
std::string TargetName;
|
2014-04-17 10:50:50 +02:00
|
|
|
std::string OriginTargetName;
|
2011-08-08 15:20:13 +02:00
|
|
|
|
2012-08-27 21:39:50 +02:00
|
|
|
std::string CurrentCompileSettingsStr;
|
|
|
|
std::string OldCompileSettingsStr;
|
2011-08-08 15:20:13 +02:00
|
|
|
|
2016-04-19 10:15:31 +02:00
|
|
|
std::string TargetBuildSubDir;
|
2016-04-18 13:46:28 +02:00
|
|
|
std::string OutMocCppFilenameRel;
|
2016-04-19 10:15:31 +02:00
|
|
|
std::string OutMocCppFilenameAbs;
|
2011-08-08 15:20:13 +02:00
|
|
|
std::list<std::string> MocIncludes;
|
|
|
|
std::list<std::string> MocDefinitions;
|
2011-11-01 14:33:11 +01:00
|
|
|
std::vector<std::string> MocOptions;
|
2013-07-25 09:24:53 +02:00
|
|
|
std::vector<std::string> UicTargetOptions;
|
|
|
|
std::map<std::string, std::string> UicOptions;
|
2013-09-15 14:41:07 +02:00
|
|
|
std::map<std::string, std::string> RccOptions;
|
2014-09-17 02:42:30 +02:00
|
|
|
std::map<std::string, std::vector<std::string> > RccInputs;
|
2011-08-08 15:20:13 +02:00
|
|
|
|
2015-06-07 10:11:42 +02:00
|
|
|
bool IncludeProjectDirsBefore;
|
2011-08-08 15:20:13 +02:00
|
|
|
bool Verbose;
|
2011-08-14 16:43:04 +02:00
|
|
|
bool ColorOutput;
|
2011-08-08 15:20:13 +02:00
|
|
|
bool RunMocFailed;
|
2013-07-25 09:24:53 +02:00
|
|
|
bool RunUicFailed;
|
2013-09-15 14:41:07 +02:00
|
|
|
bool RunRccFailed;
|
2011-08-08 15:20:13 +02:00
|
|
|
bool GenerateAll;
|
2011-12-13 22:11:47 +01:00
|
|
|
bool RelaxedMode;
|
2011-08-07 12:02:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|