2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
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.
|
|
|
|
============================================================================*/
|
2006-02-14 18:36:04 +03:00
|
|
|
#ifndef cmMakefileTargetGenerator_h
|
|
|
|
#define cmMakefileTargetGenerator_h
|
|
|
|
|
|
|
|
#include "cmLocalUnixMakefileGenerator3.h"
|
2012-07-16 19:34:22 +04:00
|
|
|
#include "cmOSXBundleGenerator.h"
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
class cmCustomCommand;
|
|
|
|
class cmDependInformation;
|
|
|
|
class cmDepends;
|
2012-03-07 20:54:52 +04:00
|
|
|
class cmGeneratorTarget;
|
2006-02-14 18:36:04 +03:00
|
|
|
class cmGeneratedFileStream;
|
2006-12-14 22:30:41 +03:00
|
|
|
class cmGlobalUnixMakefileGenerator3;
|
2006-02-14 18:36:04 +03:00
|
|
|
class cmLocalUnixMakefileGenerator3;
|
|
|
|
class cmMakefile;
|
|
|
|
class cmTarget;
|
|
|
|
class cmSourceFile;
|
|
|
|
|
|
|
|
/** \class cmMakefileTargetGenerator
|
|
|
|
* \brief Support Routines for writing makefiles
|
|
|
|
*
|
|
|
|
*/
|
2006-03-28 17:54:01 +04:00
|
|
|
class cmMakefileTargetGenerator
|
2006-02-14 18:36:04 +03:00
|
|
|
{
|
|
|
|
public:
|
2006-02-15 20:32:43 +03:00
|
|
|
// constructor to set the ivars
|
2008-02-19 00:38:34 +03:00
|
|
|
cmMakefileTargetGenerator(cmTarget* target);
|
2012-07-18 14:17:39 +04:00
|
|
|
virtual ~cmMakefileTargetGenerator();
|
2006-02-15 20:32:43 +03:00
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// construct using this factory call
|
2008-02-19 00:38:34 +03:00
|
|
|
static cmMakefileTargetGenerator *New(cmTarget *tgt);
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
/* the main entry point for this class. Writes the Makefiles associated
|
|
|
|
with this target */
|
|
|
|
virtual void WriteRuleFiles() = 0;
|
2006-03-28 17:54:01 +04:00
|
|
|
|
2006-07-11 17:55:27 +04:00
|
|
|
/* return the number of actions that have progress reporting on them */
|
|
|
|
virtual unsigned long GetNumberOfProgressActions() {
|
|
|
|
return this->NumberOfProgressActions;}
|
2009-06-25 17:58:51 +04:00
|
|
|
std::string GetProgressFileNameFull()
|
|
|
|
{ return this->ProgressFileNameFull; }
|
2006-07-11 17:55:27 +04:00
|
|
|
|
2007-02-17 00:12:17 +03:00
|
|
|
cmTarget* GetTarget() { return this->Target;}
|
2012-07-18 15:39:14 +04:00
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
protected:
|
|
|
|
|
|
|
|
// create the file and directory etc
|
|
|
|
void CreateRuleFile();
|
2006-03-28 17:54:01 +04:00
|
|
|
|
2006-06-01 19:45:51 +04:00
|
|
|
// outputs the rules for object files and custom commands used by
|
|
|
|
// this target
|
|
|
|
void WriteTargetBuildRules();
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
// write some common code at the top of build.make
|
|
|
|
void WriteCommonCodeRules();
|
2006-06-01 19:45:51 +04:00
|
|
|
void WriteTargetLanguageFlags();
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
// write the provide require rules for this target
|
|
|
|
void WriteTargetRequiresRules();
|
|
|
|
|
|
|
|
// write the clean rules for this target
|
|
|
|
void WriteTargetCleanRules();
|
|
|
|
|
|
|
|
// write the depend rules for this target
|
|
|
|
void WriteTargetDependRules();
|
|
|
|
|
2008-02-15 19:22:23 +03:00
|
|
|
// write rules for Mac OS X Application Bundle content.
|
2012-07-18 14:17:39 +04:00
|
|
|
struct MacOSXContentGeneratorType :
|
|
|
|
cmOSXBundleGenerator::MacOSXContentGeneratorType
|
2012-07-16 19:34:22 +04:00
|
|
|
{
|
2012-07-18 14:17:39 +04:00
|
|
|
MacOSXContentGeneratorType(cmMakefileTargetGenerator* gen) :
|
|
|
|
Generator(gen) {}
|
|
|
|
|
|
|
|
void operator()(cmSourceFile& source, const char* pkgloc);
|
2012-07-16 19:34:22 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
cmMakefileTargetGenerator* Generator;
|
|
|
|
};
|
2012-07-18 15:39:14 +04:00
|
|
|
friend struct MacOSXContentGeneratorType;
|
2008-02-15 19:22:23 +03:00
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// write the rules for an object
|
|
|
|
void WriteObjectRuleFiles(cmSourceFile& source);
|
|
|
|
|
|
|
|
// write the build rule for an object
|
|
|
|
void WriteObjectBuildFile(std::string &obj,
|
2006-03-28 17:54:01 +04:00
|
|
|
const char *lang,
|
2006-02-14 18:36:04 +03:00
|
|
|
cmSourceFile& source,
|
|
|
|
std::vector<std::string>& depends);
|
2006-03-28 17:54:01 +04:00
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// write the depend.make file for an object
|
|
|
|
void WriteObjectDependRules(cmSourceFile& source,
|
|
|
|
std::vector<std::string>& depends);
|
2006-03-28 17:54:01 +04:00
|
|
|
|
2006-06-01 19:45:51 +04:00
|
|
|
// write the build rule for a custom command
|
2006-02-14 18:36:04 +03:00
|
|
|
void GenerateCustomRuleFile(const cmCustomCommand& cc);
|
2006-03-28 17:54:01 +04:00
|
|
|
|
2007-03-09 19:29:15 +03:00
|
|
|
// write a rule to drive building of more than one output from
|
|
|
|
// another rule
|
|
|
|
void GenerateExtraOutput(const char* out, const char* in,
|
|
|
|
bool symbolic = false);
|
|
|
|
|
2009-03-16 23:22:13 +03:00
|
|
|
void AppendProgress(std::vector<std::string>& commands);
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// write out the variable that lists the objects for this target
|
|
|
|
void WriteObjectsVariable(std::string& variableName,
|
|
|
|
std::string& variableNameExternal);
|
2006-06-16 00:17:11 +04:00
|
|
|
void WriteObjectsString(std::string& buildObjs);
|
2008-01-30 04:46:25 +03:00
|
|
|
void WriteObjectsStrings(std::vector<std::string>& objStrings,
|
|
|
|
std::string::size_type limit = std::string::npos);
|
2006-03-28 17:54:01 +04:00
|
|
|
|
2006-06-01 19:45:51 +04:00
|
|
|
// write the driver rule to build target outputs
|
|
|
|
void WriteTargetDriverRule(const char* main_output, bool relink);
|
|
|
|
|
2006-09-29 00:40:35 +04:00
|
|
|
void DriveCustomCommands(std::vector<std::string>& depends);
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// Return the a string with -F flags on apple
|
|
|
|
std::string GetFrameworkFlags();
|
2006-03-28 17:54:01 +04:00
|
|
|
|
2011-08-31 18:24:43 +04:00
|
|
|
void AppendFortranFormatFlags(std::string& flags, cmSourceFile& source);
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// append intertarget dependencies
|
|
|
|
void AppendTargetDepends(std::vector<std::string>& depends);
|
|
|
|
|
2012-03-12 18:54:37 +04:00
|
|
|
// Append object file dependencies.
|
|
|
|
void AppendObjectDepends(std::vector<std::string>& depends);
|
|
|
|
|
2010-11-05 15:33:47 +03:00
|
|
|
// Append link rule dependencies (objects, etc.).
|
|
|
|
void AppendLinkDepends(std::vector<std::string>& depends);
|
|
|
|
|
2011-12-06 01:28:03 +04:00
|
|
|
// Lookup the link rule for this target.
|
|
|
|
std::string GetLinkRule(const char* linkRuleVar);
|
|
|
|
|
2007-12-21 20:22:12 +03:00
|
|
|
/** In order to support parallel builds for custom commands with
|
|
|
|
multiple outputs the outputs are given a serial order, and only
|
|
|
|
the first output actually has the build rule. Other outputs
|
|
|
|
just depend on the first one. The check-build-system step must
|
|
|
|
remove a dependee if the depender is missing to make sure both
|
|
|
|
are regenerated properly. This method is used by the local
|
|
|
|
makefile generators to register such pairs. */
|
|
|
|
void AddMultipleOutputPair(const char* depender, const char* dependee);
|
|
|
|
|
2007-12-28 22:59:06 +03:00
|
|
|
/** Create a script to hold link rules and a command to invoke the
|
|
|
|
script at build time. */
|
|
|
|
void CreateLinkScript(const char* name,
|
|
|
|
std::vector<std::string> const& link_commands,
|
2008-02-20 22:56:29 +03:00
|
|
|
std::vector<std::string>& makefile_commands,
|
|
|
|
std::vector<std::string>& makefile_depends);
|
2007-12-28 22:59:06 +03:00
|
|
|
|
2008-02-28 01:10:45 +03:00
|
|
|
/** Create a response file with the given set of options. Returns
|
|
|
|
the relative path from the target build working directory to the
|
|
|
|
response file name. */
|
|
|
|
std::string CreateResponseFile(const char* name,
|
|
|
|
std::string const& options,
|
|
|
|
std::vector<std::string>& makefile_depends);
|
|
|
|
|
2008-10-15 18:21:14 +04:00
|
|
|
/** Create lists of object files for linking and cleaning. */
|
|
|
|
void CreateObjectLists(bool useLinkScript, bool useArchiveRules,
|
|
|
|
bool useResponseFile, std::string& buildObjs,
|
|
|
|
std::vector<std::string>& makefile_depends);
|
|
|
|
|
2011-03-15 21:07:36 +03:00
|
|
|
void AddIncludeFlags(std::string& flags, const char* lang);
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
virtual void CloseFileStreams();
|
2006-03-28 17:54:01 +04:00
|
|
|
void RemoveForbiddenFlags(const char* flagVar, const char* linkLang,
|
2006-03-14 22:03:16 +03:00
|
|
|
std::string& linkFlags);
|
2006-02-14 18:36:04 +03:00
|
|
|
cmTarget *Target;
|
2012-03-07 20:54:52 +04:00
|
|
|
cmGeneratorTarget* GeneratorTarget;
|
2006-02-14 18:36:04 +03:00
|
|
|
cmLocalUnixMakefileGenerator3 *LocalGenerator;
|
2006-12-14 22:30:41 +03:00
|
|
|
cmGlobalUnixMakefileGenerator3 *GlobalGenerator;
|
2006-02-14 18:36:04 +03:00
|
|
|
cmMakefile *Makefile;
|
2009-07-03 16:41:10 +04:00
|
|
|
const char *ConfigName;
|
2006-03-28 17:54:01 +04:00
|
|
|
|
2007-05-01 21:51:25 +04:00
|
|
|
enum CustomCommandDriveType { OnBuild, OnDepends, OnUtility };
|
|
|
|
CustomCommandDriveType CustomCommandDriver;
|
2006-09-29 00:40:35 +04:00
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// the full path to the build file
|
|
|
|
std::string BuildFileName;
|
|
|
|
std::string BuildFileNameFull;
|
|
|
|
|
2006-07-11 17:55:27 +04:00
|
|
|
// the full path to the progress file
|
|
|
|
std::string ProgressFileNameFull;
|
|
|
|
unsigned long NumberOfProgressActions;
|
2009-03-16 23:55:58 +03:00
|
|
|
bool NoRuleMessages;
|
2006-07-11 17:55:27 +04:00
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// the path to the directory the build file is in
|
|
|
|
std::string TargetBuildDirectory;
|
|
|
|
std::string TargetBuildDirectoryFull;
|
|
|
|
|
|
|
|
// the stream for the build file
|
|
|
|
cmGeneratedFileStream *BuildFileStream;
|
|
|
|
|
|
|
|
// the stream for the flag file
|
|
|
|
std::string FlagFileNameFull;
|
|
|
|
cmGeneratedFileStream *FlagFileStream;
|
2011-03-15 21:07:36 +03:00
|
|
|
class StringList: public std::vector<std::string> {};
|
|
|
|
std::map<cmStdString, StringList> FlagFileDepends;
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
// the stream for the info file
|
|
|
|
std::string InfoFileNameFull;
|
|
|
|
cmGeneratedFileStream *InfoFileStream;
|
|
|
|
|
|
|
|
// files to clean
|
|
|
|
std::vector<std::string> CleanFiles;
|
|
|
|
|
|
|
|
// objects used by this target
|
|
|
|
std::vector<std::string> Objects;
|
|
|
|
std::vector<std::string> ExternalObjects;
|
|
|
|
|
|
|
|
// Set of object file names that will be built in this directory.
|
2006-03-15 19:02:08 +03:00
|
|
|
std::set<cmStdString> ObjectFiles;
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2008-02-15 19:22:23 +03:00
|
|
|
// Set of extra output files to be driven by the build.
|
|
|
|
std::set<cmStdString> ExtraFiles;
|
|
|
|
|
2007-12-21 20:22:12 +03:00
|
|
|
typedef std::map<cmStdString, cmStdString> MultipleOutputPairsType;
|
|
|
|
MultipleOutputPairsType MultipleOutputPairs;
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2008-02-19 00:38:34 +03:00
|
|
|
// Target name info.
|
|
|
|
std::string TargetNameOut;
|
|
|
|
std::string TargetNameSO;
|
|
|
|
std::string TargetNameReal;
|
|
|
|
std::string TargetNameImport;
|
|
|
|
std::string TargetNamePDB;
|
|
|
|
|
|
|
|
// Mac OS X content info.
|
|
|
|
std::string MacContentDirectory;
|
2008-04-08 08:06:47 +04:00
|
|
|
std::set<cmStdString> MacContentFolders;
|
2012-07-16 19:34:22 +04:00
|
|
|
cmOSXBundleGenerator* OSXBundleGenerator;
|
2012-07-18 14:17:39 +04:00
|
|
|
MacOSXContentGeneratorType* MacOSXContentGenerator;
|
2008-02-19 00:38:34 +03:00
|
|
|
|
2011-05-17 16:50:55 +04:00
|
|
|
typedef std::map<cmStdString, cmStdString> ByLanguageMap;
|
2011-01-13 07:06:25 +03:00
|
|
|
std::string GetFlags(const std::string &l);
|
2011-05-17 16:50:55 +04:00
|
|
|
ByLanguageMap FlagsByLanguage;
|
2011-01-13 07:06:25 +03:00
|
|
|
std::string GetDefines(const std::string &l);
|
2011-05-17 16:50:55 +04:00
|
|
|
ByLanguageMap DefinesByLanguage;
|
2011-01-13 07:06:25 +03:00
|
|
|
|
2007-12-31 00:11:38 +03:00
|
|
|
// Target-wide Fortran module output directory.
|
|
|
|
bool FortranModuleDirectoryComputed;
|
|
|
|
std::string FortranModuleDirectory;
|
|
|
|
const char* GetFortranModuleDirectory();
|
|
|
|
|
|
|
|
// Compute target-specific Fortran language flags.
|
|
|
|
void AddFortranFlags(std::string& flags);
|
|
|
|
|
2009-09-30 00:39:07 +04:00
|
|
|
// Helper to add flag for windows .def file.
|
|
|
|
void AddModuleDefinitionFlag(std::string& flags);
|
|
|
|
|
2009-10-02 21:51:49 +04:00
|
|
|
// Add language feature flags.
|
|
|
|
void AddFeatureFlags(std::string& flags, const char* lang);
|
|
|
|
|
2009-10-02 21:52:01 +04:00
|
|
|
// Feature query methods.
|
|
|
|
const char* GetFeature(const char* feature);
|
|
|
|
bool GetFeatureAsBool(const char* feature);
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
//==================================================================
|
2006-03-28 17:54:01 +04:00
|
|
|
// Convenience routines that do nothing more than forward to
|
2006-02-14 18:36:04 +03:00
|
|
|
// implementaitons
|
2006-03-28 17:54:01 +04:00
|
|
|
std::string Convert(const char* source,
|
|
|
|
cmLocalGenerator::RelativeRoot relative,
|
|
|
|
cmLocalGenerator::OutputFormat output =
|
2006-02-14 18:36:04 +03:00
|
|
|
cmLocalGenerator::UNCHANGED,
|
2006-03-28 17:54:01 +04:00
|
|
|
bool optional = false)
|
2006-02-14 18:36:04 +03:00
|
|
|
{
|
|
|
|
return this->LocalGenerator->Convert(source, relative, output, optional);
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|