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 cmLocalVisualStudio6Generator_h
|
|
|
|
#define cmLocalVisualStudio6Generator_h
|
|
|
|
|
2006-07-11 21:23:02 +04:00
|
|
|
#include "cmLocalVisualStudioGenerator.h"
|
2002-09-04 23:23:56 +04:00
|
|
|
|
|
|
|
class cmTarget;
|
|
|
|
class cmSourceFile;
|
2003-06-03 18:30:23 +04:00
|
|
|
class cmSourceGroup;
|
|
|
|
class cmCustomCommand;
|
2002-09-04 23:23:56 +04:00
|
|
|
|
|
|
|
/** \class cmLocalVisualStudio6Generator
|
|
|
|
* \brief Write a LocalUnix makefiles.
|
|
|
|
*
|
|
|
|
* cmLocalVisualStudio6Generator produces a LocalUnix makefile from its
|
2006-03-15 19:02:08 +03:00
|
|
|
* member this->Makefile.
|
2002-09-04 23:23:56 +04:00
|
|
|
*/
|
2006-07-11 21:23:02 +04:00
|
|
|
class cmLocalVisualStudio6Generator : public cmLocalVisualStudioGenerator
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
///! Set cache only and recurse to false by default.
|
|
|
|
cmLocalVisualStudio6Generator();
|
|
|
|
|
|
|
|
virtual ~cmLocalVisualStudio6Generator();
|
2007-05-09 22:41:38 +04:00
|
|
|
|
|
|
|
virtual void AddHelperCommands();
|
2012-03-28 21:49:01 +04:00
|
|
|
virtual void AddCMakeListsRules();
|
2007-05-09 22:41:38 +04:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
/**
|
2012-08-13 21:42:58 +04:00
|
|
|
* Generate the makefile for this directory.
|
2002-09-04 23:23:56 +04:00
|
|
|
*/
|
2005-03-18 18:41:41 +03:00
|
|
|
virtual void Generate();
|
2002-09-04 23:23:56 +04:00
|
|
|
|
|
|
|
void OutputDSPFile();
|
|
|
|
|
|
|
|
enum BuildType {STATIC_LIBRARY, DLL, EXECUTABLE, WIN32_EXECUTABLE, UTILITY};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Specify the type of the build: static, dll, or executable.
|
|
|
|
*/
|
2005-06-22 17:06:46 +04:00
|
|
|
void SetBuildType(BuildType, const char* libName, cmTarget&);
|
2002-09-04 23:23:56 +04:00
|
|
|
|
2007-08-01 23:25:40 +04:00
|
|
|
virtual std::string GetTargetDirectory(cmTarget const& target) const;
|
2012-03-07 23:04:33 +04:00
|
|
|
virtual std::string ComputeLongestObjectDirectory(cmTarget&) const;
|
2002-09-04 23:23:56 +04:00
|
|
|
private:
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string DSPHeaderTemplate;
|
|
|
|
std::string DSPFooterTemplate;
|
2009-10-01 00:03:09 +04:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
void CreateSingleDSP(const char *lname, cmTarget &tgt);
|
2012-08-13 21:42:58 +04:00
|
|
|
void WriteDSPFile(std::ostream& fout, const char *libName,
|
2002-09-04 23:23:56 +04:00
|
|
|
cmTarget &tgt);
|
2012-08-13 21:42:58 +04:00
|
|
|
void WriteDSPBeginGroup(std::ostream& fout,
|
2002-10-24 02:03:27 +04:00
|
|
|
const char* group,
|
|
|
|
const char* filter);
|
2002-09-04 23:23:56 +04:00
|
|
|
void WriteDSPEndGroup(std::ostream& fout);
|
|
|
|
|
|
|
|
void WriteDSPHeader(std::ostream& fout, const char *libName,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget &tgt, std::vector<cmSourceGroup> &sgs);
|
2002-09-04 23:23:56 +04:00
|
|
|
|
|
|
|
void WriteDSPFooter(std::ostream& fout);
|
2006-02-10 02:42:58 +03:00
|
|
|
void AddDSPBuildRule(cmTarget& tgt);
|
2002-09-04 23:23:56 +04:00
|
|
|
void WriteCustomRule(std::ostream& fout,
|
|
|
|
const char* source,
|
2007-05-09 16:25:45 +04:00
|
|
|
const cmCustomCommand& command,
|
2002-09-04 23:23:56 +04:00
|
|
|
const char* flags);
|
2005-04-26 19:08:18 +04:00
|
|
|
void AddUtilityCommandHack(cmTarget& target, int count,
|
|
|
|
std::vector<std::string>& depends,
|
2006-02-08 20:01:21 +03:00
|
|
|
const cmCustomCommand& origCommand);
|
2008-01-30 01:30:34 +03:00
|
|
|
void WriteGroup(const cmSourceGroup *sg, cmTarget& target,
|
2005-07-13 19:21:30 +04:00
|
|
|
std::ostream &fout, const char *libName);
|
2009-06-16 19:57:18 +04:00
|
|
|
class EventWriter;
|
|
|
|
friend class EventWriter;
|
2009-10-28 19:19:15 +03:00
|
|
|
cmsys::auto_ptr<cmCustomCommand>
|
|
|
|
MaybeCreateOutputDir(cmTarget& target, const char* config);
|
2012-08-13 21:42:58 +04:00
|
|
|
std::string CreateTargetRules(cmTarget &target,
|
|
|
|
const char* configName,
|
2002-09-04 23:23:56 +04:00
|
|
|
const char *libName);
|
2006-04-19 18:34:41 +04:00
|
|
|
void ComputeLinkOptions(cmTarget& target, const char* configName,
|
|
|
|
const std::string extraOptions,
|
|
|
|
std::string& options);
|
2012-03-12 22:40:58 +04:00
|
|
|
void OutputObjects(cmTarget& target, const char* tool,
|
|
|
|
std::string& options);
|
2012-10-15 12:42:42 +04:00
|
|
|
std::string GetTargetIncludeOptions(cmTarget &target, const char *config);
|
2006-03-15 19:02:08 +03:00
|
|
|
std::vector<std::string> Configurations;
|
2007-08-10 21:02:59 +04:00
|
|
|
|
|
|
|
std::string GetConfigName(std::string const& configuration) const;
|
2008-01-14 17:20:58 +03:00
|
|
|
|
|
|
|
// Special definition check for VS6.
|
|
|
|
virtual bool CheckDefinition(std::string const& define) const;
|
2002-09-04 23:23:56 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|