2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-09-04 23:23:56 +04: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.
|
2002-09-04 23:23:56 +04: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.
|
|
|
|
============================================================================*/
|
2002-09-04 23:23:56 +04:00
|
|
|
#ifndef cmGlobalVisualStudio6Generator_h
|
|
|
|
#define cmGlobalVisualStudio6Generator_h
|
|
|
|
|
2007-04-04 19:22:14 +04:00
|
|
|
#include "cmGlobalVisualStudioGenerator.h"
|
2012-11-19 18:48:33 +04:00
|
|
|
#include "cmGlobalGeneratorFactory.h"
|
2002-09-04 23:23:56 +04:00
|
|
|
|
|
|
|
class cmTarget;
|
|
|
|
|
|
|
|
/** \class cmGlobalVisualStudio6Generator
|
|
|
|
* \brief Write a Unix makefiles.
|
|
|
|
*
|
|
|
|
* cmGlobalVisualStudio6Generator manages UNIX build process for a tree
|
|
|
|
*/
|
2007-04-04 19:22:14 +04:00
|
|
|
class cmGlobalVisualStudio6Generator : public cmGlobalVisualStudioGenerator
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
public:
|
2015-05-24 12:31:14 +03:00
|
|
|
cmGlobalVisualStudio6Generator(cmake* cm);
|
2012-11-19 18:48:33 +04:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory() {
|
|
|
|
return new cmGlobalGeneratorSimpleFactory
|
|
|
|
<cmGlobalVisualStudio6Generator>(); }
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
///! Get the name for the generator.
|
2014-02-25 02:36:27 +04:00
|
|
|
virtual std::string GetName() const {
|
2002-09-04 23:23:56 +04:00
|
|
|
return cmGlobalVisualStudio6Generator::GetActualName();}
|
2014-02-25 02:36:27 +04:00
|
|
|
static std::string GetActualName() {return "Visual Studio 6";}
|
2002-09-04 23:23:56 +04:00
|
|
|
|
2003-07-08 05:52:10 +04:00
|
|
|
/** Get the documentation entry for this generator. */
|
2012-11-19 19:42:24 +04:00
|
|
|
static void GetDocumentation(cmDocumentationEntry& entry);
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
///! Create a local generator appropriate to this Global Generator
|
2015-05-24 12:50:55 +03:00
|
|
|
virtual cmLocalGenerator *CreateLocalGenerator(cmLocalGenerator* parent,
|
|
|
|
cmState::Snapshot snapshot);
|
2002-09-04 23:23:56 +04:00
|
|
|
|
|
|
|
/**
|
2014-10-10 03:22:45 +04:00
|
|
|
* Try to determine system information such as shared library
|
2012-08-13 21:42:58 +04:00
|
|
|
* extension, pthreads, byte order etc.
|
2002-09-04 23:23:56 +04:00
|
|
|
*/
|
2012-08-13 21:42:58 +04:00
|
|
|
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
2007-06-28 17:09:26 +04:00
|
|
|
cmMakefile *, bool optional);
|
2005-02-22 17:12:10 +03:00
|
|
|
|
2002-09-04 23: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.
|
|
|
|
*/
|
2013-11-15 22:33:32 +04:00
|
|
|
virtual void GenerateBuildCommand(
|
|
|
|
std::vector<std::string>& makeCommand,
|
2014-02-25 02:38:55 +04:00
|
|
|
const std::string& makeProgram,
|
2014-02-08 00:40:05 +04:00
|
|
|
const std::string& projectName,
|
2014-02-25 02:38:30 +04:00
|
|
|
const std::string& projectDir,
|
2014-02-07 02:31:47 +04:00
|
|
|
const std::string& targetName,
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config,
|
2015-02-26 13:32:26 +03:00
|
|
|
bool fast, bool verbose,
|
2013-11-15 22:33:32 +04:00
|
|
|
std::vector<std::string> const& makeOptions = std::vector<std::string>()
|
|
|
|
);
|
2002-09-04 23:23:56 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate the DSW workspace file.
|
|
|
|
*/
|
|
|
|
virtual void OutputDSWFile();
|
2004-03-10 00:28:44 +03:00
|
|
|
virtual void OutputDSWFile(cmLocalGenerator* root,
|
|
|
|
std::vector<cmLocalGenerator*>& generators);
|
2003-11-26 22:29:53 +03:00
|
|
|
virtual void WriteDSWFile(std::ostream& fout,
|
2004-03-10 00:28:44 +03:00
|
|
|
cmLocalGenerator* root,
|
2003-11-26 22:29:53 +03:00
|
|
|
std::vector<cmLocalGenerator*>& generators);
|
2006-02-03 19:36:11 +03:00
|
|
|
|
|
|
|
/** Append the subdirectory for the given configuration. */
|
2014-02-22 04:05:55 +04:00
|
|
|
virtual void AppendDirectoryForConfig(const std::string& prefix,
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config,
|
2014-02-22 04:05:55 +04:00
|
|
|
const std::string& suffix,
|
2006-03-03 20:58:48 +03:00
|
|
|
std::string& dir);
|
2006-02-03 19:36:11 +03:00
|
|
|
|
2006-02-25 01:35:35 +03:00
|
|
|
///! What is the configurations directory variable called?
|
2012-03-09 01:18:55 +04:00
|
|
|
virtual const char* GetCMakeCFGIntDir() const { return "$(IntDir)"; }
|
2009-09-16 19:44:08 +04:00
|
|
|
|
2013-12-04 19:35:04 +04:00
|
|
|
virtual void FindMakeProgram(cmMakefile*);
|
|
|
|
|
2014-07-14 22:38:58 +04:00
|
|
|
virtual bool IsForVS6() const { return true; }
|
|
|
|
|
2009-09-16 19:44:08 +04:00
|
|
|
protected:
|
2014-07-22 23:01:05 +04:00
|
|
|
virtual void Generate();
|
2009-09-16 19:44:08 +04:00
|
|
|
virtual const char* GetIDEVersion() { return "6.0"; }
|
2002-09-04 23:23:56 +04:00
|
|
|
private:
|
2013-11-15 19:41:45 +04:00
|
|
|
virtual std::string GetVSMakeProgram() { return this->GetMSDevCommand(); }
|
2002-12-20 20:59:18 +03:00
|
|
|
void GenerateConfigurations(cmMakefile* mf);
|
2002-09-04 23:23:56 +04:00
|
|
|
void WriteDSWFile(std::ostream& fout);
|
|
|
|
void WriteDSWHeader(std::ostream& fout);
|
2012-08-13 21:42:58 +04:00
|
|
|
void WriteProject(std::ostream& fout,
|
2014-02-08 00:40:05 +04:00
|
|
|
const std::string& name, const char* path,
|
|
|
|
cmTarget const& t);
|
2012-08-13 21:42:58 +04:00
|
|
|
void WriteExternalProject(std::ostream& fout,
|
2014-02-08 00:40:05 +04:00
|
|
|
const std::string& name, const char* path,
|
2014-02-10 09:21:34 +04:00
|
|
|
const std::set<std::string>& dependencies);
|
2002-09-04 23:23:56 +04:00
|
|
|
void WriteDSWFooter(std::ostream& fout);
|
2013-12-10 18:16:23 +04:00
|
|
|
virtual std::string WriteUtilityDepend(cmTarget const* target);
|
2013-11-13 23:27:51 +04:00
|
|
|
std::string MSDevCommand;
|
|
|
|
bool MSDevCommandInitialized;
|
|
|
|
std::string const& GetMSDevCommand();
|
|
|
|
std::string FindMSDevCommand();
|
2002-09-04 23:23:56 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|