2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-09-04 15:23:56 -04:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2002-09-04 15:23:56 -04:00
|
|
|
|
2009-09-28 11: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.
|
|
|
|
============================================================================*/
|
2002-09-04 15:23:56 -04:00
|
|
|
#ifndef cmGlobalVisualStudio6Generator_h
|
|
|
|
#define cmGlobalVisualStudio6Generator_h
|
|
|
|
|
2007-04-04 11:22:14 -04:00
|
|
|
#include "cmGlobalVisualStudioGenerator.h"
|
2002-09-04 15:23:56 -04:00
|
|
|
|
|
|
|
class cmTarget;
|
|
|
|
|
|
|
|
/** \class cmGlobalVisualStudio6Generator
|
|
|
|
* \brief Write a Unix makefiles.
|
|
|
|
*
|
|
|
|
* cmGlobalVisualStudio6Generator manages UNIX build process for a tree
|
|
|
|
*/
|
2007-04-04 11:22:14 -04:00
|
|
|
class cmGlobalVisualStudio6Generator : public cmGlobalVisualStudioGenerator
|
2002-09-04 15:23:56 -04:00
|
|
|
{
|
|
|
|
public:
|
2002-12-05 13:44:11 -05:00
|
|
|
cmGlobalVisualStudio6Generator();
|
2006-05-11 11:47:03 -04:00
|
|
|
static cmGlobalGenerator* New() {
|
|
|
|
return new cmGlobalVisualStudio6Generator; }
|
2002-12-05 13:44:11 -05:00
|
|
|
|
2002-09-04 15:23:56 -04:00
|
|
|
///! Get the name for the generator.
|
2003-07-07 21:52:10 -04:00
|
|
|
virtual const char* GetName() const {
|
2002-09-04 15:23:56 -04:00
|
|
|
return cmGlobalVisualStudio6Generator::GetActualName();}
|
|
|
|
static const char* GetActualName() {return "Visual Studio 6";}
|
|
|
|
|
2003-07-07 21:52:10 -04:00
|
|
|
/** Get the documentation entry for this generator. */
|
|
|
|
virtual void GetDocumentation(cmDocumentationEntry& entry) const;
|
|
|
|
|
2002-09-04 15:23:56 -04:00
|
|
|
///! Create a local generator appropriate to this Global Generator
|
|
|
|
virtual cmLocalGenerator *CreateLocalGenerator();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Try to determine system infomation such as shared library
|
|
|
|
* extension, pthreads, byte order etc.
|
|
|
|
*/
|
2005-02-22 09:12:10 -05:00
|
|
|
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
2007-06-28 09:09:26 -04:00
|
|
|
cmMakefile *, bool optional);
|
2005-02-22 09:12:10 -05:00
|
|
|
|
2002-09-04 15:23:56 -04:00
|
|
|
/**
|
|
|
|
* Try running cmake and building a file. This is used for dynalically
|
|
|
|
* loaded commands, not as part of the usual build process.
|
|
|
|
*/
|
2005-04-28 18:18:54 -04:00
|
|
|
virtual std::string GenerateBuildCommand(const char* makeProgram,
|
2006-03-10 13:54:57 -05:00
|
|
|
const char *projectName,
|
|
|
|
const char* additionalOptions,
|
|
|
|
const char *targetName,
|
|
|
|
const char* config,
|
2006-06-01 15:51:24 -04:00
|
|
|
bool ignoreErrors,
|
|
|
|
bool fast);
|
2002-09-04 15:23:56 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 DSW workspace file.
|
|
|
|
*/
|
|
|
|
virtual void OutputDSWFile();
|
2004-03-09 16:28:44 -05:00
|
|
|
virtual void OutputDSWFile(cmLocalGenerator* root,
|
|
|
|
std::vector<cmLocalGenerator*>& generators);
|
2003-11-26 14:29:53 -05:00
|
|
|
virtual void WriteDSWFile(std::ostream& fout,
|
2004-03-09 16:28:44 -05:00
|
|
|
cmLocalGenerator* root,
|
2003-11-26 14:29:53 -05:00
|
|
|
std::vector<cmLocalGenerator*>& generators);
|
2006-02-03 11:36:11 -05:00
|
|
|
|
|
|
|
/** Append the subdirectory for the given configuration. */
|
2006-03-03 12:58:48 -05:00
|
|
|
virtual void AppendDirectoryForConfig(const char* prefix,
|
|
|
|
const char* config,
|
|
|
|
const char* suffix,
|
|
|
|
std::string& dir);
|
2006-02-03 11:36:11 -05:00
|
|
|
|
2006-02-24 17:35:35 -05:00
|
|
|
///! What is the configurations directory variable called?
|
2012-03-08 16:18:55 -05:00
|
|
|
virtual const char* GetCMakeCFGIntDir() const { return "$(IntDir)"; }
|
2009-09-16 11:44:08 -04:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual const char* GetIDEVersion() { return "6.0"; }
|
2002-09-04 15:23:56 -04:00
|
|
|
private:
|
2002-12-20 12:59:18 -05:00
|
|
|
void GenerateConfigurations(cmMakefile* mf);
|
2002-09-04 15:23:56 -04:00
|
|
|
void WriteDSWFile(std::ostream& fout);
|
|
|
|
void WriteDSWHeader(std::ostream& fout);
|
|
|
|
void WriteProject(std::ostream& fout,
|
2005-06-22 09:06:46 -04:00
|
|
|
const char* name, const char* path, cmTarget &t);
|
2002-09-04 15:23:56 -04:00
|
|
|
void WriteExternalProject(std::ostream& fout,
|
|
|
|
const char* name, const char* path,
|
2009-07-14 14:16:46 -04:00
|
|
|
const std::set<cmStdString>& dependencies);
|
2002-09-04 15:23:56 -04:00
|
|
|
void WriteDSWFooter(std::ostream& fout);
|
2010-08-24 18:47:56 -04:00
|
|
|
virtual std::string WriteUtilityDepend(cmTarget* target);
|
2002-09-04 15:23:56 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|