cmake/Source/cmQtAutoGenerators.h

143 lines
5.4 KiB
C
Raw Normal View History

2012-02-18 12:40:36 +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.
============================================================================*/
2014-08-03 19:52:23 +02:00
#ifndef cmQtAutoGenerators_h
#define cmQtAutoGenerators_h
2012-02-18 12:40:36 +02:00
class cmGlobalGenerator;
class cmMakefile;
2014-08-03 19:52:23 +02:00
class cmQtAutoGenerators
2012-02-18 12:40:36 +02:00
{
public:
2014-08-03 19:52:23 +02:00
cmQtAutoGenerators();
2015-04-27 22:25:09 +02:00
bool Run(const std::string& targetDirectory, const std::string& config);
2012-02-18 12:40:36 +02:00
2014-08-03 19:52:23 +02:00
bool InitializeAutogenTarget(cmTarget* target);
void SetupAutoGenerateTarget(cmTarget const* target);
void SetupSourceFiles(cmTarget const* target);
2012-02-18 12:40:36 +02:00
private:
2014-08-03 19:52:23 +02:00
void SetupAutoMocTarget(cmTarget const* target,
const std::string &autogenTargetName,
std::map<std::string, std::string> &configIncludes,
std::map<std::string, std::string> &configDefines);
void SetupAutoUicTarget(cmTarget const* target,
std::map<std::string, std::string> &configUicOptions);
void SetupAutoRccTarget(cmTarget const* target);
bool ReadAutogenInfoFile(cmMakefile* makefile,
2015-04-27 22:25:09 +02:00
const std::string& targetDirectory,
const std::string& config);
2012-02-18 12:40:36 +02:00
bool ReadOldMocDefinitionsFile(cmMakefile* makefile,
2015-04-27 22:25:09 +02:00
const std::string& targetDirectory);
void WriteOldMocDefinitionsFile(const std::string& targetDirectory);
2012-02-18 12:40:36 +02:00
2013-03-16 19:13:01 +02:00
std::string MakeCompileSettingsString(cmMakefile* makefile);
2014-08-03 19:52:23 +02:00
bool RunAutogen(cmMakefile* makefile);
2012-02-18 12:40:36 +02:00
bool GenerateMoc(const std::string& sourceFile,
const std::string& mocFileName);
2014-09-13 15:30:52 +02:00
bool GenerateUi(const std::string& realName, const std::string& uiFileName);
2014-08-03 19:52:23 +02:00
bool GenerateQrc();
2012-02-18 12:40:36 +02:00
void ParseCppFile(const std::string& absFilename,
2015-04-27 22:25:09 +02:00
const std::vector<std::string>& headerExtensions,
std::map<std::string, std::string>& includedMocs,
std::map<std::string, std::vector<std::string> >& includedUis);
2012-02-18 12:40:36 +02:00
void StrictParseCppFile(const std::string& absFilename,
2015-04-27 22:25:09 +02:00
const std::vector<std::string>& headerExtensions,
std::map<std::string, std::string>& includedMocs,
std::map<std::string, std::vector<std::string> >& includedUis);
2012-02-18 12:40:36 +02:00
void SearchHeadersForCppFile(const std::string& absFilename,
2013-03-16 19:13:01 +02:00
const std::vector<std::string>& headerExtensions,
std::set<std::string>& absHeaders);
2012-02-18 12:40:36 +02:00
void ParseHeaders(const std::set<std::string>& absHeaders,
2015-04-27 22:25:09 +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);
2014-08-03 19:52:23 +02:00
void ParseForUic(const std::string& fileName,
2015-04-27 22:25:09 +02:00
const std::string& contentsString,
std::map<std::string, std::vector<std::string> >& includedUis);
2014-08-03 19:52:23 +02:00
void ParseForUic(const std::string& fileName,
2015-04-27 22:25:09 +02:00
std::map<std::string, std::vector<std::string> >& includedUis);
2012-02-18 12:40:36 +02:00
void Init();
2013-03-16 19:13:01 +02:00
std::string Join(const std::vector<std::string>& lst, char separator);
2012-02-18 12:40:36 +02:00
bool EndsWith(const std::string& str, const std::string& with);
bool StartsWith(const std::string& str, const std::string& with);
2014-08-03 19:52:23 +02:00
void MergeUicOptions(std::vector<std::string> &opts,
const std::vector<std::string> &fileOpts, bool isQt5);
void MergeRccOptions(std::vector<std::string> &opts,
const std::vector<std::string> &fileOpts, bool isQt5);
2012-02-18 12:40:36 +02:00
2015-04-27 22:25:09 +02:00
std::string GetRccExecutable(cmTarget const* target);
std::string ListQt5RccInputs(cmSourceFile* sf, cmTarget const* target,
std::vector<std::string>& depends);
std::string ListQt4RccInputs(cmSourceFile* sf,
std::vector<std::string>& depends);
bool InputFilesNewerThanQrc(const std::string& qrcFile,
const std::string& rccOutput);
2012-02-18 12:40:36 +02:00
std::string QtMajorVersion;
std::string Sources;
2015-04-27 22:25:09 +02:00
std::vector<std::string> RccSources;
2014-08-03 19:52:23 +02:00
std::string SkipMoc;
std::string SkipUic;
2012-02-18 12:40:36 +02:00
std::string Headers;
bool IncludeProjectDirsBefore;
std::string Srcdir;
std::string Builddir;
std::string MocExecutable;
2014-08-03 19:52:23 +02:00
std::string UicExecutable;
std::string RccExecutable;
2012-02-18 12:40:36 +02:00
std::string MocCompileDefinitionsStr;
std::string MocIncludesStr;
std::string MocOptionsStr;
std::string ProjectBinaryDir;
std::string ProjectSourceDir;
std::string TargetName;
2015-04-27 22:25:09 +02:00
std::string OriginTargetName;
2012-02-18 12:40:36 +02:00
2013-03-16 19:13:01 +02:00
std::string CurrentCompileSettingsStr;
std::string OldCompileSettingsStr;
2012-02-18 12:40:36 +02:00
std::string OutMocCppFilename;
std::list<std::string> MocIncludes;
std::list<std::string> MocDefinitions;
std::vector<std::string> MocOptions;
2014-08-03 19:52:23 +02:00
std::vector<std::string> UicTargetOptions;
std::map<std::string, std::string> UicOptions;
std::map<std::string, std::string> RccOptions;
2015-04-27 22:25:09 +02:00
std::map<std::string, std::vector<std::string> > RccInputs;
2012-02-18 12:40:36 +02:00
bool Verbose;
bool ColorOutput;
bool RunMocFailed;
2014-08-03 19:52:23 +02:00
bool RunUicFailed;
bool RunRccFailed;
2012-02-18 12:40:36 +02:00
bool GenerateAll;
bool RelaxedMode;
};
#endif