2002-08-31 00:00:35 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2002-08-31 00:00:35 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2002-08-31 00:00:35 +04:00
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
|
|
|
|
#ifndef cmGlobalGenerator_h
|
|
|
|
#define cmGlobalGenerator_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
|
|
|
|
class cmake;
|
|
|
|
class cmMakefile;
|
|
|
|
class cmLocalGenerator;
|
|
|
|
|
|
|
|
/** \class cmGlobalGenerator
|
|
|
|
* \brief Responable for overseeing the generation process for the entire tree
|
|
|
|
*
|
|
|
|
* Subclasses of this class generate makefiles for various
|
|
|
|
* platforms.
|
|
|
|
*/
|
|
|
|
class cmGlobalGenerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
///! Free any memory allocated with the GlobalGenerator
|
2002-09-04 23:24:49 +04:00
|
|
|
cmGlobalGenerator();
|
2002-08-31 00:00:35 +04:00
|
|
|
virtual ~cmGlobalGenerator();
|
|
|
|
|
|
|
|
///! Create a local generator appropriate to this Global Generator
|
|
|
|
virtual cmLocalGenerator *CreateLocalGenerator();
|
|
|
|
|
|
|
|
///! Get the name for this generator
|
2003-07-08 05:52:10 +04:00
|
|
|
virtual const char *GetName() const { return "Generic"; };
|
|
|
|
|
|
|
|
/** Get the documentation entry for this generator. */
|
|
|
|
virtual void GetDocumentation(cmDocumentationEntry& entry) const;
|
2002-08-31 00:00:35 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create LocalGenerators and process the CMakeLists files. This does not
|
|
|
|
* actually produce any makefiles, DSPs, etc.
|
|
|
|
*/
|
|
|
|
virtual void Configure();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate the all required files for building this project/tree. This
|
|
|
|
* basically creates a series of LocalGenerators for each directory and
|
|
|
|
* requests that they Generate.
|
|
|
|
*/
|
|
|
|
virtual void Generate();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate the required files for building this directory. This
|
|
|
|
* basically creates a single LocalGenerators and
|
|
|
|
* requests that it Generate.
|
|
|
|
*/
|
|
|
|
virtual void LocalGenerate();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set/Get and Clear the enabled languages.
|
|
|
|
*/
|
2004-09-03 20:03:41 +04:00
|
|
|
void SetLanguageEnabled(const char*, cmMakefile* mf);
|
2002-08-31 00:00:35 +04:00
|
|
|
bool GetLanguageEnabled(const char*);
|
|
|
|
void ClearEnabledLanguages();
|
2004-09-22 22:42:05 +04:00
|
|
|
void GetEnabledLanguages(std::vector<std::string>& lang);
|
2002-08-31 00:00:35 +04:00
|
|
|
/**
|
|
|
|
* Try to determine system infomation such as shared library
|
|
|
|
* extension, pthreads, byte order etc.
|
|
|
|
*/
|
2004-08-27 16:41:07 +04:00
|
|
|
virtual void EnableLanguage(std::vector<std::string>const& languages, cmMakefile *);
|
2002-08-31 00:00:35 +04:00
|
|
|
|
2002-09-13 18:42:50 +04:00
|
|
|
/**
|
|
|
|
* Try to determine system infomation, get it from another generator
|
|
|
|
*/
|
2002-11-08 23:46:08 +03:00
|
|
|
virtual void EnableLanguagesFromGenerator(cmGlobalGenerator *gen);
|
2002-09-13 18:42:50 +04:00
|
|
|
|
2002-08-31 00:00:35 +04:00
|
|
|
/**
|
|
|
|
* Try running cmake and building a file. This is used for dynalically
|
|
|
|
* loaded commands, not as part of the usual build process.
|
|
|
|
*/
|
|
|
|
virtual int TryCompile(const char *srcdir, const char *bindir,
|
2002-09-20 21:15:56 +04:00
|
|
|
const char *projectName, const char *targetName,
|
2004-08-05 00:33:10 +04:00
|
|
|
std::string *output, cmMakefile* mf);
|
2002-08-31 00:00:35 +04:00
|
|
|
|
|
|
|
///! Set the CMake instance
|
|
|
|
void SetCMakeInstance(cmake *cm) {
|
|
|
|
this->m_CMakeInstance = cm; };
|
|
|
|
|
|
|
|
///! Get the CMake instance
|
|
|
|
cmake *GetCMakeInstance() {
|
|
|
|
return this->m_CMakeInstance; };
|
|
|
|
|
2002-11-08 23:46:08 +03:00
|
|
|
void SetConfiguredFilesPath(const char* s){m_ConfiguredFilesPath = s;}
|
2003-01-21 00:59:02 +03:00
|
|
|
void GetLocalGenerators(std::vector<cmLocalGenerator *>&g) { g = m_LocalGenerators;}
|
2003-08-04 06:34:37 +04:00
|
|
|
static int s_TryCompileTimeout;
|
2003-01-21 00:59:02 +03:00
|
|
|
|
2003-08-22 00:22:23 +04:00
|
|
|
bool GetForceUnixPaths() {return m_ForceUnixPaths;}
|
2004-09-03 20:03:41 +04:00
|
|
|
///! return the language for the given extension
|
|
|
|
const char* GetLanguageFromExtension(const char* ext);
|
2004-09-22 22:42:05 +04:00
|
|
|
///! is an extension to be ignored
|
|
|
|
bool IgnoreFile(const char* ext);
|
|
|
|
///! What is the preference for linkers and this language (None or Prefered)
|
|
|
|
const char* GetLinkerPreference(const char* lang);
|
|
|
|
///! What is the output extension for a given language.
|
|
|
|
const char* GetLanguageOutputExtensionForLanguage(const char* lang);
|
|
|
|
///! What is the output extension for a given source file extension.
|
|
|
|
const char* GetLanguageOutputExtensionFromExtension(const char* lang);
|
2002-08-31 00:00:35 +04:00
|
|
|
protected:
|
2004-03-10 00:28:44 +03:00
|
|
|
bool IsExcluded(cmLocalGenerator* root, cmLocalGenerator* gen);
|
2004-08-26 22:55:55 +04:00
|
|
|
void FindMakeProgram(cmMakefile*);
|
|
|
|
|
2003-08-22 00:22:23 +04:00
|
|
|
bool m_ForceUnixPaths;
|
2002-12-05 21:44:11 +03:00
|
|
|
cmStdString m_FindMakeProgramFile;
|
2002-11-08 23:46:08 +03:00
|
|
|
cmStdString m_ConfiguredFilesPath;
|
2002-08-31 00:00:35 +04:00
|
|
|
cmake *m_CMakeInstance;
|
|
|
|
std::vector<cmLocalGenerator *> m_LocalGenerators;
|
|
|
|
|
|
|
|
///! used by Configure()
|
2002-09-26 23:14:20 +04:00
|
|
|
void RecursiveConfigure(cmLocalGenerator *lg, float start, float end);
|
2002-08-31 00:00:35 +04:00
|
|
|
|
|
|
|
private:
|
2004-09-22 22:42:05 +04:00
|
|
|
// If you add a new map here, make sure it is copied
|
|
|
|
// in EnableLanguagesFromGenerator
|
|
|
|
std::map<cmStdString, bool> m_IgnoreExtensions;
|
2002-08-31 00:00:35 +04:00
|
|
|
std::map<cmStdString, bool> m_LanguageEnabled;
|
2004-09-22 22:42:05 +04:00
|
|
|
std::map<cmStdString, cmStdString> m_LanguageToOutputExtension;
|
2004-09-03 20:03:41 +04:00
|
|
|
std::map<cmStdString, cmStdString> m_ExtensionToLanguage;
|
2004-09-22 22:42:05 +04:00
|
|
|
std::map<cmStdString, cmStdString> m_LanguageToLinkerPreference;
|
2002-08-31 00:00:35 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|